Skip to content

Commit 0dc605c

Browse files
committed
2.0.0
1 parent 7bc12ea commit 0dc605c

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,22 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44
This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com).
55

6+
## [2.0.0] - 2015-04-02
7+
8+
### Breaking Changes
9+
* `version` key of version object is now `null` unless semver found
10+
11+
### Changes
12+
* parse out `v` prefix for version numbers ([ngoldman/gh-release#23](https://github.com/ngoldman/gh-release/issues/23))
13+
14+
### Additions
15+
* add `title` key to version object
16+
* add a real test
17+
618
## [1.1.0] - 2015-03-07
719
* add cli support
820
* remove `description` key if empty
9-
* add contributing info
21+
* add `CONTRIBUTING.md`
1022
* add node 0.10 to travis-ci testing environments
1123

1224
## [1.0.1] - 2015-03-02
@@ -15,5 +27,6 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
1527
## 1.0.0 - 2015-03-02
1628
* init
1729

30+
[2.0.0]: https://github.com/ngoldman/changelog-parser/compare/v1.1.0...v2.0.0
1831
[1.1.0]: https://github.com/ngoldman/changelog-parser/compare/v1.0.1...v1.1.0
1932
[1.0.1]: https://github.com/ngoldman/changelog-parser/compare/v1.0.0...v1.0.1

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "changelog-parser",
33
"description": "Change log parser for node.",
4-
"version": "1.1.0",
4+
"version": "2.0.0",
55
"author": "Nate Goldman <[email protected]>",
66
"bin": {
77
"changelog-parser": "./bin/cli.js"
@@ -17,8 +17,9 @@
1717
"line-reader": "^0.2.4"
1818
},
1919
"devDependencies": {
20-
"standard": "^2.6.5",
21-
"standard-format": "^1.2.0"
20+
"standard": "^3.3.1",
21+
"tap-spec": "^3.0.0",
22+
"tape": "^3.5.0"
2223
},
2324
"homepage": "https://github.com/ngoldman/changelog-parser",
2425
"keywords": [
@@ -32,7 +33,6 @@
3233
"url": "https://github.com/ngoldman/changelog-parser.git"
3334
},
3435
"scripts": {
35-
"format": "standard-format -w",
36-
"test": "standard && node test"
36+
"test": "standard && node test | tap-spec"
3737
}
3838
}

0 commit comments

Comments
 (0)