Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/libxml/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require 'mkmf'
require 'rubygems'
gem 'mini_portile2', '~> 2.5.0' # Keep this version in sync with the one in the gemspec!
gem 'mini_portile2', '~> 2.5' # Keep this version in sync with the one in the gemspec!

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we change it to ~> 2.6.0? This way, we keep the current behavior of disallowing minor updates (only patches).

Note: I'm assuming 2.6 is the version we need.

require 'mini_portile2'
message "Using mini_portile2 version #{MiniPortile::VERSION}\n"

Expand Down
8 changes: 4 additions & 4 deletions ext/libxml/ruby_xml_version.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* Don't nuke this block! It is used for automatically updating the
* versions below. VERSION = string formatting, VERNUM = numbered
* version for inline testing: increment both or none at all.*/
#define RUBY_LIBXML_VERSION "3.2.2.0"
#define RUBY_LIBXML_VERNUM 3220
#define RUBY_LIBXML_VERSION "3.2.3.0"
#define RUBY_LIBXML_VERNUM 3230
#define RUBY_LIBXML_VER_MAJ 3
#define RUBY_LIBXML_VER_MIN 2
#define RUBY_LIBXML_VER_MIC 1
#define RUBY_LIBXML_VER_PATCH 2
#define RUBY_LIBXML_VER_MIC 3
#define RUBY_LIBXML_VER_PATCH 0
2 changes: 1 addition & 1 deletion lib/libxml/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Libxml
VERSION = '3.2.2.0'
VERSION = '3.2.3.0'
end
2 changes: 1 addition & 1 deletion salsify_libxml_ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Gem::Specification.new do |spec|

spec.test_files = Dir.glob('test/test_*.rb')
spec.required_ruby_version = '>= 2.5'
spec.add_runtime_dependency("mini_portile2", "~> 2.5.0") # keep version in sync with the one in extconf.rb
spec.add_runtime_dependency("mini_portile2", "~> 2.5") # keep version in sync with the one in extconf.rb
spec.add_development_dependency 'rake-compiler'
spec.add_development_dependency 'minitest'
spec.license = 'MIT'
Expand Down