Skip to content

Commit 2ff6aff

Browse files
committed
📦 2.0.0
1 parent 0080006 commit 2ff6aff

File tree

2 files changed

+31
-5
lines changed

2 files changed

+31
-5
lines changed

CHANGELOG.md

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,69 @@
11
# Change Log
2+
23
All notable changes to this project will be documented in this file.
4+
35
This project adheres to [Semantic Versioning](http://semver.org/).
6+
47
This change log adheres to [keepachangelog.com](http://keepachangelog.com).
58

6-
## [Unreleased][unreleased]
9+
## [2.0.0] - 2015-04-28
10+
711
### Changed
8-
* moved all logging and CLI-related logic out of API and into CLI
12+
913
* **breaking:** changed API parameters from `options, auth, callback` to `options, callback`
1014
* `auth` is now in `options` as `options.auth`
11-
* no longer uses the node-github client
15+
* moved all logging and CLI-related logic out of API and into CLI
16+
* no longer uses the `node-github` client
1217

1318
### Added
19+
1420
* `assets` option for uploading assets
1521

1622
## [1.1.8] - 2015-04-22
23+
1724
### Fixed
25+
1826
* exit process with code 1 on aborted release or invalid directory ([#31](https://github.com/ngoldman/gh-release/issues/31))
1927

2028
## [1.1.7] - 2015-04-07
29+
2130
### Fixed
31+
2232
* If cli is successful, should exit with code of 0
2333

2434
## [1.1.6] - 2015-04-03
35+
2536
* update demo
2637
* update doc
2738

2839
## [1.1.5] - 2015-04-02
40+
2941
* more improvements to CLI style & formatting
3042
* bump `changelog-parser` to 2.x
3143
* bump `standard` to 3.x
3244
* readme updates
3345

3446
## [1.1.4] - 2015-04-01
47+
3548
* improve preview style & formatting ([#15](https://github.com/ngoldman/gh-release/issues/15) & [#24](https://github.com/ngoldman/gh-release/pull/24))
3649

3750
## [1.1.3] - 2015-03-22
51+
3852
* Handle error when release number already exists on github
3953

4054
## [1.1.2] - 2015-03-09
55+
4156
* add `dry-run` and `workpath` options
4257
* add a `get-defaults.js` test
4358
* check if commit exists on github before trying to create release [#11](https://github.com/ngoldman/gh-release/issues/11)
4459
* add support for git URLs [#16](https://github.com/ngoldman/gh-release/issues/16)
4560

4661
## [1.1.1] - 2015-03-02
62+
4763
* use `changelog-parser` for more reliable change log parsing
4864

4965
## [1.1.0] - 2015-03-01
66+
5067
* target node `0.12` and `iojs` on travis
5168
* use docker and cache `node_modules` on travis
5269
* add oauth2 token authentication method [#5](https://github.com/ngoldman/gh-release/issues/5)
@@ -55,43 +72,52 @@ This change log adheres to [keepachangelog.com](http://keepachangelog.com).
5572
* fix error when in directories w/o `package.json` & `CHANGELOG.md` [#9](https://github.com/ngoldman/gh-release/issues/9)
5673

5774
## [1.0.8] - 2015-02-22
75+
5876
* fix for standard [#4](https://github.com/ngoldman/gh-release/issues/4)
5977
* fix ordering in readme
6078

6179
## [1.0.7] - 2015-02-11
80+
6281
* add `standard` to dev dependencies
6382
* add `.travis.yml` & badge for travis-ci
6483
* improve cli usage info & move to top of readme
6584
* add `files` to `package.json` for future build/zip/dist support
6685

6786
## [1.0.6] - 2015-02-08
87+
6888
* move `get-defaults.js` to `lib`
6989
* improve usage info for cli
7090
* improve defaults management in cli
7191
* add proper target_commitish default
7292

7393
## [1.0.5] - 2015-02-08
94+
7495
* hotfix for help/usage in dir w/o `package.json` or `CHANGELOG.md`
7596

7697
## [1.0.4] - 2015-02-07
98+
7799
* remove `files` from `package.json` to fix cli again
78100

79101
## [1.0.3] - 2015-02-07
102+
80103
* actual fix for cli.. should work fine now
81104
* allow `v` prefix for change log version names
82105

83106
## [1.0.2] - 2015-02-07
107+
84108
* hotfix for local requires in cli
85109

86110
## [1.0.1] - 2015-02-07
111+
87112
* add better options info to readme
88113

89114
## 1.0.0 - 2015-02-07
115+
90116
* create working prototype
91117
* define basic node interface
92118
* define basic cli interface
93119

94-
[unreleased]: https://github.com/ngoldman/gh-release/compare/v1.1.8...HEAD
120+
[2.0.0]: https://github.com/ngoldman/gh-release/compare/v1.1.8...v2.0.0
95121
[1.1.8]: https://github.com/ngoldman/gh-release/compare/v1.1.7...v1.1.8
96122
[1.1.7]: https://github.com/ngoldman/gh-release/compare/v1.1.6...v1.1.7
97123
[1.1.6]: https://github.com/ngoldman/gh-release/compare/v1.1.5...v1.1.6

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gh-release",
33
"description": "Create a release for a node package on github.",
4-
"version": "1.1.8",
4+
"version": "2.0.0",
55
"author": "Nate Goldman <[email protected]>",
66
"bin": {
77
"gh-release": "./bin/cli.js"

0 commit comments

Comments
 (0)