Skip to content

Commit 4848029

Browse files
authored
Merge pull request #18 from highb/release/master/0.1.2
Release 0.1.2 updates
2 parents 272be13 + 677a8ca commit 4848029

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# pathspec-ruby CHANGELOG
22

3+
## 0.1.2
4+
- Fix for regexp matching Thanks @incase! #16
5+
- File handling cleanup Thanks @martinandert! #13
6+
- `from_filename` actually works now! Thanks @martinandert! #12
7+
38
## 0.1.0
49
- Port new edgecase handling from [python-path-specification](https://github.com/cpburnz/python-path-specification/pull/8). Many thanks to @jdpace! :)
510
- Removed EOL Ruby support

install_from_source.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ bundle exec rspec spec
99
bundle exec gem uninstall pathspec
1010

1111
# Build and install!
12-
bundle exec gem build pathspec.gemspec && bundle exec gem install pathspec-0.1.0.gem
12+
bundle exec gem build pathspec.gemspec && bundle exec gem install pathspec-0.1.2.gem

pathspec.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
33

44
Gem::Specification.new do |s|
55
s.name = 'pathspec'
6-
s.version = '0.1.0'
7-
s.date = '2017-06-04'
6+
s.version = '0.1.2'
7+
s.date = '2018-01-11'
88
s.summary = "PathSpec: for matching path patterns"
99
s.description = "Use to match path patterns such as gitignore"
1010
s.authors = ["Brandon High"]
@@ -14,6 +14,6 @@ Gem::Specification.new do |s|
1414
s.require_paths = ["lib"]
1515
s.homepage = 'https://github.com/highb/pathspec-ruby'
1616
s.license = 'Apache'
17-
s.add_development_dependency 'bundler'
18-
s.add_development_dependency 'rspec'
17+
s.add_development_dependency 'bundler', '~> 1.0'
18+
s.add_development_dependency 'rspec', '~> 3.0'
1919
end

0 commit comments

Comments
 (0)