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 +4 -4
- data/CHANGELOG.md +7 -1
- data/Gemfile.lock +1 -1
- data/lib/keepachangelog/parser/yaml.rb +16 -20
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0dc54a0dff5d2fcdcf446cf7923e74d75ca9d9c0
|
|
4
|
+
data.tar.gz: da7a230310786b66f7fc22bb92ce1e6e295f3f68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
@@ -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
|
-
#
|
|
10
|
-
#
|
|
11
|
-
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
16
|
-
#
|
|
17
|
-
#
|
|
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
|
-
#
|
|
24
|
-
#
|
|
25
|
-
#
|
|
26
|
-
#
|
|
27
|
-
#
|
|
28
|
-
#
|
|
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