Skip to content

Commit

Permalink
Merge pull request #11 from salsify/add-to-automated-library-releases
Browse files Browse the repository at this point in the history
Add salsify libxml to the automated library release system
  • Loading branch information
jmateus authored Dec 11, 2023
2 parents 6cf8c7a + 8ad88e3 commit 8704d18
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
1 change: 0 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env ruby

require "bundler/gem_tasks"
require "salsify_gem"
require "rubygems"
require "rake/extensiontask"
require "rake/testtask"
Expand Down
4 changes: 2 additions & 2 deletions ext/libxml/ruby_xml_version.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* 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.1.3"
#define RUBY_LIBXML_VERNUM 3213
#define RUBY_LIBXML_VERSION "3.2.2.0"
#define RUBY_LIBXML_VERNUM 3220
#define RUBY_LIBXML_VER_MAJ 3
#define RUBY_LIBXML_VER_MIN 2
#define RUBY_LIBXML_VER_MIC 1
Expand Down
5 changes: 4 additions & 1 deletion lib/libxml.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
#
# This include is deprecated, use libxml-ruby instead!

require 'libxml-ruby'
require 'libxml-ruby'

module Libxml
end
5 changes: 5 additions & 0 deletions lib/libxml/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# frozen_string_literal: true

module Libxml
VERSION = '3.2.2.0'
end
1 change: 0 additions & 1 deletion salsify_libxml_ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ 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_development_dependency 'salsify_gem'
spec.add_development_dependency 'rake-compiler'
spec.add_development_dependency 'minitest'
spec.license = 'MIT'
Expand Down

0 comments on commit 8704d18

Please sign in to comment.