buff-ignore 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.
data/CHANGELOG.md ADDED
@@ -0,0 +1,11 @@
1
+ CHANGELOG
2
+ =========
3
+
4
+ v1.0.1
5
+ ------
6
+ - Use `VERSION` constant
7
+ - Add CHANGELOG
8
+
9
+ v1.0.0
10
+ ------
11
+ - *(initial release)*
data/buff-ignore.gemspec CHANGED
@@ -5,7 +5,7 @@ require 'buff/ignore/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'buff-ignore'
8
- spec.version = '1.0.0'
8
+ spec.version = Buff::Ignore::VERSION
9
9
  spec.authors = ['Seth Vargo']
10
10
  spec.email = ['sethvargo@gmail.com']
11
11
  spec.description = 'Parse ignore files with Ruby'
@@ -1,6 +1,6 @@
1
1
  module Buff
2
2
  module Ignore
3
3
  # The version of Buff::Ignore
4
- VERSION = '0.1.0'
4
+ VERSION = '1.0.1'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buff-ignore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -100,6 +100,7 @@ extra_rdoc_files: []
100
100
  files:
101
101
  - .gitignore
102
102
  - .travis.yml
103
+ - CHANGELOG.md
103
104
  - Gemfile
104
105
  - Guardfile
105
106
  - LICENSE