diff --git a/CHANGELOG.md b/CHANGELOG.md index 00f1e20..ececb4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # pathspec-ruby CHANGELOG ## 0.1.0 +- Port new edgecase handling from [python-path-specification](https://github.com/cpburnz/python-path-specification/pull/8). Many thanks to @jdpace! :) - Removed EOL Ruby support - Added current Ruby stable to Travis testing diff --git a/install_from_source.sh b/install_from_source.sh index 926a6f7..0e4326e 100644 --- a/install_from_source.sh +++ b/install_from_source.sh @@ -9,4 +9,4 @@ bundle exec rspec spec bundle exec gem uninstall pathspec # Build and install! -bundle exec gem build pathspec.gemspec && bundle exec gem install pathspec-0.0.1.gem +bundle exec gem build pathspec.gemspec && bundle exec gem install pathspec-0.1.0.gem diff --git a/pathspec.gemspec b/pathspec.gemspec index 8829f22..f47ebf6 100644 --- a/pathspec.gemspec +++ b/pathspec.gemspec @@ -3,8 +3,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |s| s.name = 'pathspec' - s.version = '0.0.2' - s.date = '2014-08-11' + s.version = '0.1.0' + s.date = '2017-06-04' s.summary = "PathSpec: for matching path patterns" s.description = "Use to match path patterns such as gitignore" s.authors = ["Brandon High"] @@ -12,7 +12,7 @@ Gem::Specification.new do |s| s.files = Dir.glob("{lib,spec}/**/*") + %w(LICENSE README.md CHANGELOG.md) s.test_files = s.files.grep(%r{^spec/}) s.require_paths = ["lib"] - s.homepage = 'https://rubygems.org/gems/pathspec' + s.homepage = 'https://github.com/highb/pathspec-ruby' s.license = 'Apache' s.add_development_dependency 'bundler' s.add_development_dependency 'rspec'