keepachangelog 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ba8c6c289a59b43d4162e7dcbaa0ba5e8aaee9fb
4
- data.tar.gz: 717fc1d7b2b6c500b120437e15b629c60091f385
3
+ metadata.gz: d54eca6140fcc5088df9a25e92f0fe50b7df1a82
4
+ data.tar.gz: cd1981c05340bc9ec4fb1309d9e422c9cfb008a7
5
5
  SHA512:
6
- metadata.gz: 5a04b57cf6d2cce3295f14fbbfe0c88753b2aa0c9990d84e0ffa2cd33a1ae8392df08b9a607224e1c420d77936847d388042229e0dfa3f1ef707098f76f6933a
7
- data.tar.gz: d5821bf9d3ba88cbafd5d6780ab50be991b982ccae2249ebde9a687388674e978ef7afe80ff038539efb3bc297509d94bdca9d7637d64b0af66296f3794eabe8
6
+ metadata.gz: 721125e2778898619487ef091c5d2783bf7d01d6017721e83220547a794b32a9e13d57ae3d75852adb02c3a371d4ca37fe3ec0e8fca75326b18d768234a777a6
7
+ data.tar.gz: 065e781135ea1d0d1ab7dfe01666b118755b7b81aaa3db4b12746b5f1887e2982cdd4e5a4140fb6b4bc293ed941c548b1d3e129daeecf2245861994b70738c37
@@ -4,15 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
- ## [Unreleased]
7
+ ## [0.3.1] - 2017-03-27
8
8
  ### Fixed
9
- - YAML parser can now read multiple changes in a version. (#2)
10
- - Do not display anchors when URL is missing. (#3)
11
-
12
- ### New
13
- - Documentation on how to add metadata. (#4)
9
+ - Remove duplicates in Changelog for this project. (#6)
14
10
 
15
- ## [0.3.0]
11
+ ## [0.3.0] - 2017-03-27
16
12
  ### Fixed
17
13
  - YAML parser can now read multiple changes in a version. (#2)
18
14
  - Do not display anchors when URL is missing. (#3)
@@ -35,7 +31,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
35
31
  - Tool for reading Changelog in Markdown format.
36
32
  - Ability to convert Changelog to YAML.
37
33
 
38
- [Unreleased]: https://git.basalt.se/chbr/keepachangelog/compare/0.3.0...HEAD
34
+ [0.3.1]: https://git.basalt.se/chbr/keepachangelog/compare/0.3.0...0.3.1
39
35
  [0.3.0]: https://git.basalt.se/chbr/keepachangelog/compare/0.2.1...0.3.0
40
36
  [0.2.1]: https://git.basalt.se/chbr/keepachangelog/compare/0.2.0...0.2.1
41
37
  [0.2.0]: https://git.basalt.se/chbr/keepachangelog/compare/0.1.0...0.2.0
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- keepachangelog (0.3.0)
4
+ keepachangelog (0.3.1)
5
5
  json (~> 2.0)
6
6
  thor (~> 0.19)
7
7
 
@@ -0,0 +1,4 @@
1
+ ---
2
+ title: Remove duplicates in Changelog for this project
3
+ issue: 6
4
+ type: Fixed
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keepachangelog",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Parser for changelogs based on keepachangelog.com",
5
5
  "main": "index.js",
6
6
  "scripts": {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: keepachangelog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Basalt AB
@@ -151,9 +151,7 @@ files:
151
151
  - changelog/0.3.0/2-multiple-changes.yaml
152
152
  - changelog/0.3.0/3-anchors-without-url.yaml
153
153
  - changelog/0.3.0/4-document-meta.yaml
154
- - changelog/Unreleased/2-multiple-changes.yaml
155
- - changelog/Unreleased/3-anchors-without-url.yaml
156
- - changelog/Unreleased/4-document-meta.yaml
154
+ - changelog/0.3.1/6-clean-changelog.yaml
157
155
  - changelog/meta.yaml
158
156
  - exe/keepachangelog
159
157
  - features/help.feature
@@ -1,4 +0,0 @@
1
- ---
2
- title: YAML parser can now read multiple changes in a version
3
- issue: 2
4
- type: Fixed
@@ -1,4 +0,0 @@
1
- ---
2
- title: Do not display anchors when URL is missing
3
- issue: 3
4
- type: Fixed
@@ -1,4 +0,0 @@
1
- ---
2
- title: Documentation on how to add metadata
3
- issue: 4
4
- type: New