keep-a-changelog
Advanced tools
Comparing version 0.6.0 to 0.6.1
@@ -8,2 +8,8 @@ # Changelog | ||
## [0.6.1] - 2018-06-30 | ||
### Fixed | ||
- Prevent inserting duplicated links | ||
## [0.6.0] - 2018-06-12 | ||
@@ -93,2 +99,3 @@ | ||
[0.6.1]: https://github.com/oscarotero/keep-a-changelog/compare/v0.6.0...v0.6.1 | ||
[0.6.0]: https://github.com/oscarotero/keep-a-changelog/compare/v0.5.2...v0.6.0 | ||
@@ -95,0 +102,0 @@ [0.5.2]: https://github.com/oscarotero/keep-a-changelog/compare/v0.5.1...v0.5.2 |
@@ -5,3 +5,3 @@ { | ||
"homepage": "https://github.com/oscarotero/keep-a-changelog#readme", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"main": "src/index.js", | ||
@@ -31,7 +31,7 @@ "bin": { | ||
"semver": "^5.5.0", | ||
"yargs-parser": "^10.0.0" | ||
"yargs-parser": "^10.1.0" | ||
}, | ||
"devDependencies": { | ||
"mocha": "^5.2.0", | ||
"prettier": "^1.13.5" | ||
"prettier": "^1.13.7" | ||
}, | ||
@@ -38,0 +38,0 @@ "scripts": { |
@@ -46,3 +46,7 @@ const Release = require('./Release'); | ||
links = links.concat(release.getLinks(this)); | ||
release.getLinks(this).forEach(link => { | ||
if (!links.includes(link)) { | ||
links.push(link); | ||
} | ||
}); | ||
@@ -49,0 +53,0 @@ const link = release.getCompareLink(this); |
@@ -16,3 +16,3 @@ # Changelog - demo | ||
- [#3] Test with issue link in the beginning of the text | ||
- Test with issue dot [#4]. | ||
- Test with issue dot [#4], [#1]. | ||
- Test with no issue link #123b | ||
@@ -19,0 +19,0 @@ - Test with `package#2.0` |
@@ -14,3 +14,3 @@ # Changelog - demo | ||
- #3 Test with issue link in the beginning of the text | ||
- Test with issue dot #4. | ||
- Test with issue dot #4, #1. | ||
- Test with no issue link #123b | ||
@@ -17,0 +17,0 @@ - Test with `package#2.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
32664
461
Updatedyargs-parser@^10.1.0