From b0f86391cfb0a3dd4fffc3eba4e43c0bf115714d Mon Sep 17 00:00:00 2001 From: Valter Santos Date: Thu, 30 Nov 2023 13:40:18 +0000 Subject: [PATCH 1/3] Add salsify libxml to the automated library release system --- CHANGELOG.md | 10 ++++++++++ Rakefile | 1 - lib/libxml.rb | 5 ++++- lib/libxml/version.rb | 5 +++++ salsify_libxml_ruby.gemspec | 1 - 5 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md create mode 100644 lib/libxml/version.rb diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..468ff78a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). + +## Unreleased + +## 3.3.0 - 2023-11-30 +- Added this repository to the Salsify Automated Library Release system \ No newline at end of file diff --git a/Rakefile b/Rakefile index 64995843..df193904 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,6 @@ #!/usr/bin/env ruby require "bundler/gem_tasks" -require "salsify_gem" require "rubygems" require "rake/extensiontask" require "rake/testtask" diff --git a/lib/libxml.rb b/lib/libxml.rb index e9390a87..62e8fd8c 100644 --- a/lib/libxml.rb +++ b/lib/libxml.rb @@ -2,4 +2,7 @@ # # This include is deprecated, use libxml-ruby instead! -require 'libxml-ruby' \ No newline at end of file +require 'libxml-ruby' + +module Libxml +end \ No newline at end of file diff --git a/lib/libxml/version.rb b/lib/libxml/version.rb new file mode 100644 index 00000000..0b73e1b4 --- /dev/null +++ b/lib/libxml/version.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +module Libxml + VERSION = '3.3.0' +end diff --git a/salsify_libxml_ruby.gemspec b/salsify_libxml_ruby.gemspec index 572f3bae..1abe7117 100644 --- a/salsify_libxml_ruby.gemspec +++ b/salsify_libxml_ruby.gemspec @@ -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' From 1bba89035310dabab593e5e4f6d63743d1af4919 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Mateus?= Date: Mon, 11 Dec 2023 12:01:11 +0000 Subject: [PATCH 2/3] Fix version --- CHANGELOG.md | 2 +- ext/libxml/ruby_xml_version.h | 4 ++-- lib/libxml/version.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 468ff78a..381ed587 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,5 +6,5 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ## Unreleased -## 3.3.0 - 2023-11-30 +## 3.2.2.0 - 2023-11-30 - Added this repository to the Salsify Automated Library Release system \ No newline at end of file diff --git a/ext/libxml/ruby_xml_version.h b/ext/libxml/ruby_xml_version.h index 0cdc7f30..223d7c8b 100644 --- a/ext/libxml/ruby_xml_version.h +++ b/ext/libxml/ruby_xml_version.h @@ -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 diff --git a/lib/libxml/version.rb b/lib/libxml/version.rb index 0b73e1b4..7f65a0e6 100644 --- a/lib/libxml/version.rb +++ b/lib/libxml/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Libxml - VERSION = '3.3.0' + VERSION = '3.2.2.0' end From 8ad88e3d010a6f9bc3fc155f3191eca6e3e9aa65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Mateus?= Date: Mon, 11 Dec 2023 12:06:43 +0000 Subject: [PATCH 3/3] Delete CHANGELOG --- CHANGELOG.md | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 381ed587..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,10 +0,0 @@ -# Changelog - -All notable changes to this project will be documented in this file. - -The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - -## Unreleased - -## 3.2.2.0 - 2023-11-30 -- Added this repository to the Salsify Automated Library Release system \ No newline at end of file