Skip to content

Commit

Permalink
release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dani8art committed Aug 30, 2017
1 parent f471ab6 commit b8f4816
Show file tree
Hide file tree
Showing 23 changed files with 51 additions and 23 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
### v2.0.0 - 2017-08-30

- [#42](https://github.com/dani8art/grunt-release-github/issues/42) - Remove sandbox00.js

- [#40](https://github.com/dani8art/grunt-release-github/issues/40) - Add CI files and modify Gruntfile

- [#39](https://github.com/dani8art/grunt-release-github/issues/39) - Update tests

- [#38](https://github.com/dani8art/grunt-release-github/issues/38) - Rewrite documentation

- [#34](https://github.com/dani8art/grunt-release-github/issues/34) - Create library with method that return promise

- [#33](https://github.com/dani8art/grunt-release-github/issues/33) - Change Promise library to "Bluebird"

- [#32](https://github.com/dani8art/grunt-release-github/issues/32) - Error if it is not logged on npm

- [#31](https://github.com/dani8art/grunt-release-github/issues/31) - Do anything if there is not milestone for releasing

- [#30](https://github.com/dani8art/grunt-release-github/issues/30) - beforeBump does't execute tasks

- [#29](https://github.com/dani8art/grunt-release-github/issues/29) - Give solution if there are not issues for the given milestone

- [#28](https://github.com/dani8art/grunt-release-github/issues/28) - revert changes if there are any error

- [#25](https://github.com/dani8art/grunt-release-github/issues/25) - separate repository var from username

### v1.0.4 - 2017-01-23

- [#25](https://github.com/dani8art/grunt-release-github/issues/25) - separate repository var from username
Expand Down
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ For usage instructions please read [documentation](http://github.com/dani8art/gr

[![Build Status](https://travis-ci.org/dani8art/grunt-release-github.svg?branch=master)](https://travis-ci.org/http://github.com/dani8art/grunt-release-github)

The version 1.0.4 is the latest stable version of grunt-release-github component.
see [release note](http://github.com/dani8art/grunt-release-github/releases/tag/1.0.4) for details.
The version 2.0.0 is the latest stable version of grunt-release-github component.
see [release note](http://github.com/dani8art/grunt-release-github/releases/tag/2.0.0) for details.

- Download latest version from [1.0.4](http://github.com/dani8art/grunt-release-github/releases/tag/1.0.4)
- Download latest version from [2.0.0](http://github.com/dani8art/grunt-release-github/releases/tag/2.0.0)
- For usage instructions please read [documentation](http://github.com/dani8art/grunt-release-github/tree/master/docs)
2 changes: 2 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ The following are all the release steps, you can disable any you need to:
changelogText: '<%= version %>\n', //default: '### <%= version %> - <%= grunt.template.today("yyyy-mm-dd") %>\n'
changelogFromGithub: true, //default false
file: 'package.json', //default: package.json
packageObject: 'pkg',
add: true, //default: true
commit: true, //default: true
tag: true, //default: true
Expand Down Expand Up @@ -99,6 +100,7 @@ The following are all the release steps, you can disable any you need to:
- **changelogText**, text for adding to the changelog. This option will be suppressed by the list of issues from a milestone if the `changelogFromGithub` option is `true`.
- **changelogFromGithub**, `true` if you want to get the changelog from a GitHub milestone.
- **file**, the file where the version number will be bumped.
- **packageObject**, the object where the version number will be bumped.
- **add**, `true` if you want to stage the changes of the files that were updated.
- **commit**, `true` if you want to commint the changes that were updated.
- **tag**, `true` if you want to create a tag.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-release-github",
"buildOn": "2017-08-01",
"version": "1.0.4",
"version": "2.0.0",
"description": "NPM module to manage Node JS applications releasing, using milestones and issues from Github.",
"homepage": "https://github.com/dani8art/grunt-release-github",
"main": "Gruntfile.js",
Expand Down
2 changes: 1 addition & 1 deletion tasks/grunt-release.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/bumper/bumper.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/changelog-manager/changelog-manager.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/cmd-manager/cmd.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/cmd-manager/git-cmd.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/cmd-manager/grunt-cmd.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/cmd-manager/npm-cmd.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/domain/error-model.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/logger/logger.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/rollback-manager/rollback-manager.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/services/github-milestone.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/services/github-service.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion test/lib/cmd/git-cmd.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion test/lib/cmd/grunt-cmd.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion test/lib/services/github-service.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion test/milestone.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion test/release.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down
2 changes: 1 addition & 1 deletion test/utils/testsutils.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
grunt-release-github 1.0.4, built on: 2017-08-01
grunt-release-github 2.0.0, built on: 2017-08-01
Copyright (C) 2017 Daniel Arteaga
http://darteaga.com
https://github.com/dani8art/grunt-release-github*/
Expand Down

0 comments on commit b8f4816

Please sign in to comment.