Socket
Socket
Sign inDemoInstall

keep-a-changelog

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

keep-a-changelog - npm Package Compare versions

Comparing version 0.6.7 to 0.7.0

42

CHANGELOG.md

@@ -8,24 +8,20 @@ # Changelog

## [0.7.0] - 2018-11-29
### Changed
- Removed some spaces before and after some titles to inline with the changelog format
## [0.6.7] - 2018-11-29
### Fixed
- Fixed the links sorting to compare issues numerically instead alphabetically
## [0.6.6] - 2018-11-29
### Changed
- Order the links alphabetically
## [0.6.5] - 2018-11-01
### Fixed
- Updated issue autodetection to prevent unwanted extractions - [#7]
## [0.6.4] - 2018-09-03
### Added
- Added `findRelease` function to `Changelog` for finding a release by version number - [#6]

@@ -35,5 +31,3 @@ - Added `setVersion` function to `Release` for changing the version of a release - [#6]

## [0.6.3] - 2018-08-22
### Fixed
- Fixed trailing newlines when no links are present - [#5]

@@ -44,29 +38,19 @@ - Fixed case of unreleased version to match http://keepachangelog.com/ - [#4]

## [0.6.2] - 2018-07-24
### Added
- Support for unreleased versions (releases with version but without date)
## [0.6.1] - 2018-06-30
### Fixed
- Prevent inserting duplicated links
## [0.6.0] - 2018-06-12
### Added
- CLI Api: New option `--init`, to generate an empty CHANGELOG.md file
## [0.5.2] - 2018-05-12
### Fixed
- Issues autodetection links
## [0.5.1] - 2018-05-12
### Fixed
- Issues autodetection problems with texts like `#3.4`

@@ -76,9 +60,6 @@ - Test execution was commented

## [0.5.0] - 2018-05-09
### Added
- Allow to insert a footer at the end of the changelog
### Changed
- Placed the urls of the issues at bottom

@@ -88,19 +69,13 @@ - Indent automatically the extra lines of the changes

### Fixed
- Parser refactoring
## [0.4.0] - 2018-03-22
### Added
- Create links automatically to the issues
### Fixed
- Use UTC date functions to fix decrement issue - [#1]
## [0.3.1] - 2017-12-11
### Added
- CLI Api: New option `--file`, to change the filename used

@@ -111,5 +86,3 @@ - CLI Api: New option `--url`, to set or change the project url

## [0.3.0] - 2017-12-08
### Added
- Added colors in CLI

@@ -119,9 +92,6 @@ - Parser errors contains the line number in the CHANGELOG file

### Fixed
- Fixed parsing bug when the changelog is using incorrect title levels
## [0.2.0] - 2017-12-07
### Changed
- Parser improvements

@@ -131,11 +101,8 @@ - Changed the constructor arguments of Changelog, Change and Release classes

### Removed
- Removed static factories. Use `new` instead.
### Fixed
- The last version should't have diff link
## 0.1.0 - 2017-12-07
First version

@@ -150,2 +117,3 @@

[0.7.0]: https://github.com/oscarotero/keep-a-changelog/compare/v0.6.7...v0.7.0
[0.6.7]: https://github.com/oscarotero/keep-a-changelog/compare/v0.6.6...v0.6.7

@@ -152,0 +120,0 @@ [0.6.6]: https://github.com/oscarotero/keep-a-changelog/compare/v0.6.5...v0.6.6

2

package.json

@@ -5,3 +5,3 @@ {

"homepage": "https://github.com/oscarotero/keep-a-changelog#readme",
"version": "0.6.7",
"version": "0.7.0",
"main": "src/index.js",

@@ -8,0 +8,0 @@ "bin": {

@@ -119,4 +119,4 @@ const Semver = require('semver');

if (this.description.trim()) {
t.push(this.description.trim());
t.push('');
t.push(this.description.trim());
}

@@ -126,6 +126,5 @@

if (changes.length) {
t.push('');
t.push(`### ${type[0].toUpperCase()}${type.substring(1)}`);
t = t.concat(changes.map(change => change.toString()));
t.push('');
t = t.concat(changes.map(change => change.toString()));
}

@@ -132,0 +131,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc