Skip to content

Commit

Permalink
Version bump to v1.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
nwronski committed Jan 19, 2016
1 parent a3bd70f commit 33e6709
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
All notable changes to this project will be documented in this file.

## [Unreleased][unreleased]
## [v1.1.0] - 2016-01-19
### Added
- `--force` now accepts the following argument values:
- a crop value to use for all videos, such as `"0:0:0:0"`
- any other value for when to use the least extreme crop, e.g.: `1`
- Added `--version` and `-v` flags to CLI.

### Changed
- Drop child_process spawn for cross-spawn-async. This change should get things working consistently on Windows. Before, batch operations would fail unexpectedly and have to be restarted several times to fully complete.
- Do not install `video_transcoding` gem by default. Do not force install of gem every time module is installed.
- Delete output files that cannot be confirmed. If an output file does not complete and generate a valid log file that can be verified then delete the partial or errored file.

## [v1.0.5] - 2015-11-25
### Fixed
Expand Down Expand Up @@ -123,7 +134,8 @@ All notable changes to this project will be documented in this file.
- `--quiet` flag
Log only file writes, errors, and finish (e.g.: success, failure) messages.

[unreleased]: https://github.com/nwronski/batch-transcode-video/compare/v1.0.5...HEAD
[unreleased]: https://github.com/nwronski/batch-transcode-video/compare/v1.1.0...HEAD
[v1.1.0]: https://github.com/nwronski/batch-transcode-video/compare/v1.0.5...v1.1.0
[v1.0.5]: https://github.com/nwronski/batch-transcode-video/compare/v1.0.4...v1.0.5
[v1.0.4]: https://github.com/nwronski/batch-transcode-video/compare/v1.0.3...v1.0.4
[v1.0.3]: https://github.com/nwronski/batch-transcode-video/compare/v1.0.2...v1.0.3
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "batch-transcode-video",
"version": "1.0.5",
"version": "1.1.0",
"description": "Batch transcode videos using the video_transcoding gem.",
"contributors": [
"Nick Wronski (https://github.com/nwronski)"
Expand Down Expand Up @@ -30,21 +30,21 @@
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.0.5",
"bluebird": "^3.1.1",
"charm": "^1.0.0",
"cross-spawn-async": "^2.0.1",
"glob": "^6.0.1",
"cross-spawn-async": "^2.1.6",
"glob": "^6.0.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"shell-quote": "^1.4.3"
},
"devDependencies": {
"babel-preset-es2015": "^6.1.18",
"babel-preset-es2015": "^6.3.13",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-replace": "^0.11.0",
"load-grunt-tasks": "^3.3.0"
"load-grunt-tasks": "^3.4.0"
}
}

0 comments on commit 33e6709

Please sign in to comment.