github-release-notes
Advanced tools
Comparing version 0.6.2 to 0.6.3
# Changelog | ||
## 0.6.2 (13/03/2017) | ||
- [**bug**] Remove unused option user.name [#45](https://github.com/github-tools/github-release-notes/issues/45) | ||
--- | ||
## 0.6.1 (12/03/2017) | ||
- [**bug**] Error when there is only one tag [#43](https://github.com/github-tools/github-release-notes/issues/43) | ||
- [**enhancement**] Use different files type for configuration [#39](https://github.com/github-tools/github-release-notes/issues/39) | ||
--- | ||
## 0.6.0 (11/03/2017) | ||
@@ -14,2 +31,3 @@ | ||
--- | ||
@@ -31,2 +49,3 @@ | ||
--- | ||
@@ -39,2 +58,3 @@ | ||
--- | ||
@@ -95,2 +115,3 @@ | ||
--- | ||
@@ -105,69 +126,1 @@ | ||
## v0.5.0 (26/09/2016) | ||
- [**enhancement**] Specify which tag to build [#20](https://github.com/github-tools/github-release-notes/issues/20) | ||
- [**enhancement**] Create global version of the module [#18](https://github.com/github-tools/github-release-notes/issues/18) | ||
- [**enhancement**] [**wontfix**] Use milestones as data source [#17](https://github.com/github-tools/github-release-notes/issues/17) | ||
- [**enhancement**] Update the documentation [#16](https://github.com/github-tools/github-release-notes/issues/16) | ||
- [**bug**] Manage the scenario where there is only one tag [#15](https://github.com/github-tools/github-release-notes/issues/15) | ||
- [**enhancement**] Add the chance to override the latest release body [#14](https://github.com/github-tools/github-release-notes/issues/14) | ||
- [**enhancement**] Check the network [#13](https://github.com/github-tools/github-release-notes/issues/13) | ||
- [**enhancement**] Add tests [#11](https://github.com/github-tools/github-release-notes/issues/11) | ||
- [**enhancement**] Use the issues as data source [#10](https://github.com/github-tools/github-release-notes/issues/10) | ||
- [**enhancement**] Get the information from the local git config [#9](https://github.com/github-tools/github-release-notes/issues/9) | ||
- [**enhancement**] Add the possibility to create a CHANGELOG file [#7](https://github.com/github-tools/github-release-notes/issues/7) | ||
- [**duplicate**] Tag name in the options [#2](https://github.com/github-tools/github-release-notes/issues/2) | ||
--- | ||
## v0.4.0 (03/03/2016) | ||
- [**enhancement**] Include various types of commit messages [#5](https://github.com/github-tools/github-release-notes/issues/5) | ||
--- | ||
## v0.3.3 (26/01/2016) | ||
*No changelog for this release.* | ||
--- | ||
## v0.3.2 (07/12/2015) | ||
*No changelog for this release.* | ||
--- | ||
## v0.3.1 (07/12/2015) | ||
*No changelog for this release.* | ||
--- | ||
## v0.3.0 (19/11/2015) | ||
*No changelog for this release.* | ||
--- | ||
## v0.2.2 (18/11/2015) | ||
*No changelog for this release.* | ||
--- | ||
## v0.2.1 (18/11/2015) | ||
*No changelog for this release.* | ||
--- | ||
## v0.2.0 (15/11/2015) | ||
*No changelog for this release.* | ||
--- | ||
## v0.1.0 (12/11/2015) | ||
*No changelog for this release.* |
{ | ||
"name": "github-release-notes", | ||
"version": "0.6.2", | ||
"version": "0.6.3", | ||
"description": "Node module to publish release notes based on commits between the last two tags.", | ||
@@ -5,0 +5,0 @@ "main": "./github-release-notes.js", |
@@ -758,4 +758,4 @@ 'use strict'; | ||
return Promise.all([ | ||
options.repo ? Promise.resolve(options.repo) : githubInfo.repo(), | ||
options.token ? Promise.resolve(options.token) : githubInfo.token() | ||
options.username && options.repo ? Promise.resolve({ username: options.username, repo: options.repo }) : githubInfo.repo(), | ||
options.token ? Promise.resolve({ token: options.token }) : githubInfo.token() | ||
]); | ||
@@ -762,0 +762,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
47867