Skip to content

Commit 8704d18

Browse files
authored
Merge pull request #11 from salsify/add-to-automated-library-releases
Add salsify libxml to the automated library release system
2 parents 6cf8c7a + 8ad88e3 commit 8704d18

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

Rakefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env ruby
22

33
require "bundler/gem_tasks"
4-
require "salsify_gem"
54
require "rubygems"
65
require "rake/extensiontask"
76
require "rake/testtask"

ext/libxml/ruby_xml_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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.1.3"
5-
#define RUBY_LIBXML_VERNUM 3213
4+
#define RUBY_LIBXML_VERSION "3.2.2.0"
5+
#define RUBY_LIBXML_VERNUM 3220
66
#define RUBY_LIBXML_VER_MAJ 3
77
#define RUBY_LIBXML_VER_MIN 2
88
#define RUBY_LIBXML_VER_MIC 1

lib/libxml.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
#
33
# This include is deprecated, use libxml-ruby instead!
44

5-
require 'libxml-ruby'
5+
require 'libxml-ruby'
6+
7+
module Libxml
8+
end

lib/libxml/version.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# frozen_string_literal: true
2+
3+
module Libxml
4+
VERSION = '3.2.2.0'
5+
end

salsify_libxml_ruby.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ Gem::Specification.new do |spec|
3838
spec.test_files = Dir.glob('test/test_*.rb')
3939
spec.required_ruby_version = '>= 2.5'
4040
spec.add_runtime_dependency("mini_portile2", "~> 2.5.0") # keep version in sync with the one in extconf.rb
41-
spec.add_development_dependency 'salsify_gem'
4241
spec.add_development_dependency 'rake-compiler'
4342
spec.add_development_dependency 'minitest'
4443
spec.license = 'MIT'

0 commit comments

Comments
 (0)