parse_a_changelog 0.2.1 → 0.2.2

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: 88f22b714176096b7b74215c45ae366fc975bb3b
4
- data.tar.gz: 9941e8d79d75ef6978fb7bedc325ff64705f6428
3
+ metadata.gz: '0814a6f2c4d4b59ffa497141117b93f29a1d7e4b'
4
+ data.tar.gz: aa1e20c533c4f712e77b617e8c101331f60f8a21
5
5
  SHA512:
6
- metadata.gz: 32622036ddf563e60128b569152d5bd727c98eca9123814ed717792761df2a3961f3f67e5fc54a27abb3a95934f569c6ef80b750aeb135ebbd5c22c3c474d8ef
7
- data.tar.gz: 33a56a2fe9d808ba445a9e26c97bb22b1988af9061d9fdf365995ea95d4b25aa50300843a0ea3f6bfdbf6068f19025de50e4cdd8383842999e681f1f9be399c0
6
+ metadata.gz: 57f2848dbfd2b25ea6a13132747509fe0d610fa775a5d6aaee21f834bd39b5441ccfa74ef02303a2240999e1fab22ac15631e434db27a7b5e71a6b5369936ef8
7
+ data.tar.gz: c3df37cbb4e9761436c2885ff8eb4cb6dbf8372887dad6c23563be3c35dcad513330bd6de44184752b4ec71b556933a882ab28ce6ee3a5bb2c145dd2c3701784
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.2] - 2019-01-30
10
+ ### Fixed
11
+ - Use require to load grammar to remove pathing problems
12
+
9
13
  ## [0.2.1] - 2019-01-30
10
14
  ### Added
11
15
  - Missing gemspec files
@@ -38,7 +42,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
38
42
  - Open source license and contributing information
39
43
  - Change log and versioning information
40
44
 
41
- [Unreleased]: https://github.com/cyberark/parse-a-changelog/compare/v0.2.0...HEAD
45
+ [Unreleased]: https://github.com/cyberark/parse-a-changelog/compare/v0.2.2...HEAD
46
+ [0.2.2]: https://github.com/cyberark/parse-a-changelog/compare/v0.2.1...v0.2.2
47
+ [0.2.1]: https://github.com/cyberark/parse-a-changelog/compare/v0.2.0...v0.2.1
42
48
  [0.2.0]: https://github.com/cyberark/parse-a-changelog/compare/v0.1.2...v0.2.0
43
49
  [0.1.2]: https://github.com/cyberark/parse-a-changelog/compare/v0.1.1...v0.1.2
44
50
  [0.1.1]: https://github.com/cyberark/parse-a-changelog/compare/v0.1.0...v0.1.1
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
@@ -1,6 +1,5 @@
1
1
  require 'treetop'
2
-
3
- Treetop.load('lib/grammar')
2
+ require 'grammar'
4
3
 
5
4
  module ParseAChangelog
6
5
  class ParseError < StandardError; end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parse_a_changelog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Tuttle