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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +11 -0
  3. data/VERSION +1 -1
  4. data/bin/parse +7 -0
  5. data/lib/grammar.tt +2 -2
  6. metadata +17 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1cfc47800eaa636fa6a81600a79874de2c95e5e0417219fcd566cd0f2e11ffe3
4
- data.tar.gz: 931048a672bd23a02ada2bd3613280fa85f3ea273473d8f0c33e9f94f83f75e3
3
+ metadata.gz: 7554d0c8b61929dd6e2c3ae089954703938cec271e1273624ceb91c47f774697
4
+ data.tar.gz: e5251b1ad88ca6c3a51f18cccf4b3e89e68d69c65c7c54f57cd8e04ab1c1006e
5
5
  SHA512:
6
- metadata.gz: 78d3da1b64e800a3b6b67effa57d27e102205f5acc53cb51347ecca022624953b10a6d0d8ac699505ee88a47d4972fca0d359b14345f3d1ad4c2baad55de3919
7
- data.tar.gz: e0d7a50b4f5566b2ea6abb881f095a992f564754e9bea20bf1825b13909bdceeea92e231afa1225af2e5a215261e83b3559aa98289eaa9ecb62f4b2a4ca548a0
6
+ metadata.gz: d94580da8e01d3c1d028c8853158e2f2f4a7ddfa77ec6a0145bb02a950267e9689af2b560c2a365e5ad42bf100595ede7a3f9e7cce2c51f2300244dcd8de752d
7
+ data.tar.gz: 96e751ca80a824eaeb94d14232eff9a68439d5ffa78b8cd4d0b22e0e4aac95a47a499f367693752438bb54cd6a9ee1008451ec3672c87031d1c34027891cec16
@@ -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.0
1
+ 1.0.1
data/bin/parse CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  require_relative '../lib/parse_a_changelog.rb'
4
4
 
5
+ if ARGV.empty? || ARGV[0].empty?
6
+ puts "usage: parse <changelog file>"
7
+ exit 1
8
+ else
9
+ puts "Parsing #{ARGV[0]}"
10
+ end
11
+
5
12
  begin
6
13
  ParseAChangelog.parse(ARGV[0])
7
14
  puts "SUCCESS"
@@ -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.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-02-21 00:00:00.000000000 Z
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.1
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