Skip to content

Commit 2cc2edd

Browse files
committed
Preparation of version 0.4.0
1 parent 55956c8 commit 2cc2edd

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Changed
1111

1212
- License from AGPL to MIT
13+
- Move to Node 8
1314

1415
## [0.3.1] - 2017-11-20
1516
### Changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "video-processing-cli",
33
"license": "MIT",
4-
"version": "0.3.1",
4+
"version": "0.4.0",
55
"bin": "src/app.js",
66
"private": true,
77
"author": {

src/app.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@ const ThumbnailCommand = require("./commands/thumbnail");
1717
const ProcessCommand = require("./commands/process");
1818
const FetchBinariesCommand = require("./commands/fetch-binaries");
1919

20-
program.version("0.3.0").on("--help", function() {
20+
program.version("0.4.0").on("--help", function() {
2121
// add the what's new section to the --help output
22-
Log.comment(" What's new in", program.version(), ":");
2322
Log.comment();
24-
Log.comment(" - Added 1080p preset");
25-
Log.comment(" - Re-encode 1080p original videos with the 1080p preset");
23+
Log.comment(" What's new in", program.version());
24+
Log.comment();
25+
Log.comment(" - Node 8");
26+
Log.comment(" - License changed to MIT");
2627
Log.comment();
2728
});
2829

0 commit comments

Comments
 (0)