Skip to content

Commit

Permalink
release: 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dcalsky committed Jan 27, 2018
1 parent 8de958f commit 8cb0aca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion bin/cli
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ var Logger = (function () {
input: process.stdin,
output: process.stdout
});
rl.question("Do you have known all changes? (Y/n) ", function (answer) {
rl.question("Do you already know all the changes? (Y/n) ", function (answer) {
if (answer != "Y") {
_this.log();
return false;
Expand Down Expand Up @@ -249,6 +249,9 @@ var Parser = (function () {
Parser.prototype.parse = function () {
var el = this.currentElement.first()[0];
if (!el) {
// Push the last version
this.pushChange();
this.pushVersion();
return;
}
var name = el.tagName;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "changelog-reminder",
"version": "0.3.1",
"version": "0.3.3",
"bin": "bin/cli",
"main": "bin/cli",
"ts:main": "src/cli.ts",
Expand Down

0 comments on commit 8cb0aca

Please sign in to comment.