Skip to content

Commit

Permalink
Merge pull request #2005 from alejandroperea/update-mini-portile-2
Browse files Browse the repository at this point in the history
Update mini_portile2 gem to 2.5.0
  • Loading branch information
flavorjones committed Feb 28, 2020
2 parents 6c357af + 4368832 commit b8286ae
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -44,6 +44,8 @@ Either way, we'd appreciate some feedback at [#1983](https://github.com/sparklem

### Dependencies

#### Ruby

This release introduces support for:

* Ruby 2.7, including the precompiled native binary gems for Windows.
Expand All @@ -54,6 +56,11 @@ This release ends support for:
* JRuby 9.1, which is the Ruby 2.3-compatible release.


#### Gems

* [MRI] Upgrade mini_portile2 dependency from `~> 2.4.0` to `~> 2.5.0` [[#2005](https://github.com/sparklemotion/nokogiri/issues/2005)] (Thanks, [@alejandroperea](https://github.com/alejandroperea)!)


### Added

* Add Node methods for manipulating keyword attributes (like `class` and `rel`): `#kwattr_values`, `#kwattr_add`, `#kwattr_append`, and `#kwattr_remove`. [[#2000](https://github.com/sparklemotion/nokogiri/issues/2000)]
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -4,7 +4,7 @@

source "https://rubygems.org/"

gem "mini_portile2", "~>2.4.0"
gem "mini_portile2", "~>2.5.0"

gem "concourse", "~>0.30", :group => [:development, :test]
gem "hoe", "~>3.22", ">=3.22.1", :group => [:development, :test]
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -171,7 +171,7 @@ HOE = Hoe.spec 'nokogiri' do

unless java?
self.extra_deps += [
["mini_portile2", "~> 2.4.0"], # keep version in sync with extconf.rb
["mini_portile2", "~> 2.5.0"], # keep version in sync with extconf.rb
]
end

Expand Down
2 changes: 1 addition & 1 deletion ext/nokogiri/extconf.rb
Expand Up @@ -470,7 +470,7 @@ def using_system_libraries?
# The gem version constraint in the Rakefile is not respected at install time.
# Keep this version in sync with the one in the Rakefile !
require 'rubygems'
gem 'mini_portile2', '~> 2.4.0'
gem 'mini_portile2', '~> 2.5.0'
require 'mini_portile2'
message "Using mini_portile version #{MiniPortile::VERSION}\n"

Expand Down

0 comments on commit b8286ae

Please sign in to comment.