keepachangelog 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: beb911086da3260f5c4f06ff2f57b219ddb19a06
4
- data.tar.gz: d08ff76239c9a49db9ee5f46f33d3f4df75498bd
3
+ metadata.gz: 0dc54a0dff5d2fcdcf446cf7923e74d75ca9d9c0
4
+ data.tar.gz: da7a230310786b66f7fc22bb92ce1e6e295f3f68
5
5
  SHA512:
6
- metadata.gz: 5fb6c397a7f820740f5f86206f6e37211afbfc564afd4cf17c0f7de4907b6ff57faf50333abec10ccde44b4d18f04a72d0c1d096d148d0e9c54b7f033bc33fce
7
- data.tar.gz: 0237365f64e45fd84ee99b74fd9c0b68f57621f063e0d2c7abf249525c7149f256ade2bb9ceb5b5c979d4ba05ff064f590f8d26377d147a65c8c75c263ea31a3
6
+ metadata.gz: c7f1bf4377bcb59b655f9270abef718c6b0ac96b6fffaa7e1f22286831b3863544703371646163b0cd7956bea8a67bf6cccba1db472fbbecb41982990eae9a44
7
+ data.tar.gz: 69379accbc187d49c993c11357951b7c2d782293099cbc52678350cf93174ceb0a1096b5f8a4253e44182f1a2e555cf2f4987ef54d8a8475637b17c221ec9891
data/CHANGELOG.md CHANGED
@@ -4,7 +4,12 @@ Alla ändringar till detta projekt dokumenteras i denna fil.
4
4
  Formatet är baserat på [Keep a Changelog](http://keepachangelog.com/)
5
5
  och detta projekt följer [Semantic Versioning](http://semver.org/).
6
6
 
7
+ ## [0.2.1] - 2017-03-27
8
+ ### Fixat
9
+ - Korrigera dokumentation för YAML-parser.
10
+
7
11
  ## [0.2.0] - 2017-03-27
12
+ ### Nytt
8
13
  - Förmåga att läsa in Changelog i YAML-format.
9
14
  - Förmåga att skriva till Markdown-format.
10
15
 
@@ -14,6 +19,7 @@ och detta projekt följer [Semantic Versioning](http://semver.org/).
14
19
  - Förmåga att konvertera Changelog till JSON.
15
20
  - Förmåga att konvertera Changelog till YAML.
16
21
 
17
- [Unreleased]: https://git.basalt.se/chbr/keepachangelog/compare/0.2.0...HEAD
22
+ [Unreleased]: https://git.basalt.se/chbr/keepachangelog/compare/0.2.1...HEAD
23
+ [0.2.1]: https://git.basalt.se/chbr/keepachangelog/compare/0.2.0...0.2.1
18
24
  [0.2.0]: https://git.basalt.se/chbr/keepachangelog/compare/0.1.0...0.2.0
19
25
  [0.1.0]: https://git.basalt.se/chbr/keepachangelog/compare/77986bc...0.1.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- keepachangelog (0.2.0)
4
+ keepachangelog (0.2.1)
5
5
  json (~> 2.0)
6
6
  thor (~> 0.19)
7
7
 
@@ -5,29 +5,25 @@ module Keepachangelog
5
5
  # structure where each version is its own folder and each Merge Request
6
6
  # or Pull Request is in its own YAML-file.
7
7
  #
8
- # ```
9
- # changelog
10
- # ├── 0.1.0
11
- # │   └── 1-first-merge-request.yaml
12
- # ├── 0.2.0
13
- # │   └── 3-another-cool-mr.yaml
14
- # ├── 0.3.0
15
- # │   ├── 8-fixing-some-stuff.yaml
16
- # │   └── 9-add-new-feature.yaml
17
- # └── unreleased
18
- #    └── 11-minor-patch.yaml
19
- # ```
8
+ # changelog
9
+ # ├── 0.1.0
10
+ # │   └── 1-first-merge-request.yaml
11
+ # ├── 0.2.0
12
+ # │   └── 3-another-cool-mr.yaml
13
+ # ├── 0.3.0
14
+ # │   ├── 8-fixing-some-stuff.yaml
15
+ # │   └── 9-add-new-feature.yaml
16
+ # └── unreleased
17
+ #    └── 11-minor-patch.yaml
20
18
  #
21
19
  # Each YAML file is expected to be in the following format:
22
20
  #
23
- # ```yaml
24
- # ---
25
- # title: The ability to perform Foo while Bar is active
26
- # merge_request: 11
27
- # issue: 42
28
- # author: @chbr
29
- # type: New
30
- # ```
21
+ # ---
22
+ # title: The ability to perform Foo while Bar is active
23
+ # merge_request: 11
24
+ # issue: 42
25
+ # author: @chbr
26
+ # type: New
31
27
  #
32
28
  # - `title` is a single sentence without punctiation that describes the
33
29
  # change
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keepachangelog",
3
- "version": "0.2.0",
3
+ "version": "0.2.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.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Basalt AB