Skip to content

Commit 949fed7

Browse files
authored
Merge pull request #11 from highb/release_0.1.0
Release 0.1.0
2 parents c8e75ec + a0d2732 commit 949fed7

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# pathspec-ruby CHANGELOG
22

33
## 0.1.0
4+
- Port new edgecase handling from [python-path-specification](https://github.com/cpburnz/python-path-specification/pull/8). Many thanks to @jdpace! :)
45
- Removed EOL Ruby support
56
- Added current Ruby stable to Travis testing
67

install_from_source.sh

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.0.1.gem
12+
bundle exec gem build pathspec.gemspec && bundle exec gem install pathspec-0.1.0.gem

pathspec.gemspec

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

44
Gem::Specification.new do |s|
55
s.name = 'pathspec'
6-
s.version = '0.0.2'
7-
s.date = '2014-08-11'
6+
s.version = '0.1.0'
7+
s.date = '2017-06-04'
88
s.summary = "PathSpec: for matching path patterns"
99
s.description = "Use to match path patterns such as gitignore"
1010
s.authors = ["Brandon High"]
1111
s.email = 'bh@brandon-high.com'
1212
s.files = Dir.glob("{lib,spec}/**/*") + %w(LICENSE README.md CHANGELOG.md)
1313
s.test_files = s.files.grep(%r{^spec/})
1414
s.require_paths = ["lib"]
15-
s.homepage = 'https://rubygems.org/gems/pathspec'
15+
s.homepage = 'https://github.com/highb/pathspec-ruby'
1616
s.license = 'Apache'
1717
s.add_development_dependency 'bundler'
1818
s.add_development_dependency 'rspec'

0 commit comments

Comments
 (0)