Skip to content

Commit e322b6d

Browse files
Merge pull request #13 from salsify/bump_mini_portile2_and_version
Bump to 3.2.3.0: relax mini_portile2 to ~> 2.5
2 parents 8704d18 + eb32398 commit e322b6d

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

ext/libxml/extconf.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require 'mkmf'
44
require 'rubygems'
5-
gem 'mini_portile2', '~> 2.5.0' # Keep this version in sync with the one in the gemspec!
5+
gem 'mini_portile2', '~> 2.5' # Keep this version in sync with the one in the gemspec!
66
require 'mini_portile2'
77
message "Using mini_portile2 version #{MiniPortile::VERSION}\n"
88

ext/libxml/ruby_xml_version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* Don't nuke this block! It is used for automatically updating the
22
* versions below. VERSION = string formatting, VERNUM = numbered
33
* version for inline testing: increment both or none at all.*/
4-
#define RUBY_LIBXML_VERSION "3.2.2.0"
5-
#define RUBY_LIBXML_VERNUM 3220
4+
#define RUBY_LIBXML_VERSION "3.2.3.0"
5+
#define RUBY_LIBXML_VERNUM 3230
66
#define RUBY_LIBXML_VER_MAJ 3
77
#define RUBY_LIBXML_VER_MIN 2
8-
#define RUBY_LIBXML_VER_MIC 1
9-
#define RUBY_LIBXML_VER_PATCH 2
8+
#define RUBY_LIBXML_VER_MIC 3
9+
#define RUBY_LIBXML_VER_PATCH 0

lib/libxml/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Libxml
4-
VERSION = '3.2.2.0'
4+
VERSION = '3.2.3.0'
55
end

salsify_libxml_ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Gem::Specification.new do |spec|
3737

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

0 commit comments

Comments
 (0)