parse_a_changelog 1.0.0 → 1.0.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 +11 -0
- data/VERSION +1 -1
- data/bin/parse +7 -0
- data/lib/grammar.tt +2 -2
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7554d0c8b61929dd6e2c3ae089954703938cec271e1273624ceb91c47f774697
|
4
|
+
data.tar.gz: e5251b1ad88ca6c3a51f18cccf4b3e89e68d69c65c7c54f57cd8e04ab1c1006e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d94580da8e01d3c1d028c8853158e2f2f4a7ddfa77ec6a0145bb02a950267e9689af2b560c2a365e5ad42bf100595ede7a3f9e7cce2c51f2300244dcd8de752d
|
7
|
+
data.tar.gz: 96e751ca80a824eaeb94d14232eff9a68439d5ffa78b8cd4d0b22e0e4aac95a47a499f367693752438bb54cd6a9ee1008451ec3672c87031d1c34027891cec16
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [1.0.1] - 2020-03-06
|
10
|
+
### Added
|
11
|
+
- Jenkins pipeline with ruby gems publication
|
12
|
+
- Test and Publish scripts
|
13
|
+
|
14
|
+
### Changed
|
15
|
+
- Allow https in header links
|
16
|
+
|
17
|
+
### Removed
|
18
|
+
- Gitlab CI support
|
19
|
+
|
9
20
|
## [1.0.0] - 2019-01-30
|
10
21
|
### Added
|
11
22
|
- Missing (optional) initial release tag link as last entry in links section to the grammar
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.1
|
data/bin/parse
CHANGED
data/lib/grammar.tt
CHANGED
@@ -7,8 +7,8 @@ grammar KeepAChangelog
|
|
7
7
|
'# Changelog' "\n"
|
8
8
|
'All notable changes to this project will be documented in this file.' "\n"
|
9
9
|
"\n"
|
10
|
-
'The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)' "\n"
|
11
|
-
'and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).' "\n"
|
10
|
+
'The format is based on [Keep a Changelog](http' 's'? '://keepachangelog.com/en/1.0.0/)' "\n"
|
11
|
+
'and this project adheres to [Semantic Versioning](http' 's'? '://semver.org/spec/v2.0.0.html).' "\n"
|
12
12
|
"\n"
|
13
13
|
end
|
14
14
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: parse_a_changelog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Tuttle
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: treetop
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '3.8'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec_junit_formatter
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.4.1
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.4.1
|
41
55
|
description: Uses a grammar describing the keep-a-changelog format to attempt to parse
|
42
56
|
a given file.
|
43
57
|
email: jtuttle.develops@gmail.com
|
@@ -72,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
86
|
- !ruby/object:Gem::Version
|
73
87
|
version: '0'
|
74
88
|
requirements: []
|
75
|
-
rubygems_version: 3.0.
|
89
|
+
rubygems_version: 3.0.3
|
76
90
|
signing_key:
|
77
91
|
specification_version: 4
|
78
92
|
summary: A validator for the keep-a-changelog format
|