libxml-ruby 5.0.2-x64-mingw-ucrt → 5.0.3-x64-mingw-ucrt

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 79d7bc579d2e290cce414e539ee240f35b70c3a35fb9eaec8035aad4e7ed5c7f
4
- data.tar.gz: c0ca3c3b26cc9f0dc0eddbf5b45808305f2676f9b1b440e09da74a65c77e9702
3
+ metadata.gz: 454f91a9bf4d282d23ed20adbc34b5d9c8f44968ea4fbfccb570a545ea93c2b1
4
+ data.tar.gz: 1f286df484126efbb7eae6e784fcc8c7a94c13a0711efbf56b3cdc473d667180
5
5
  SHA512:
6
- metadata.gz: 715379b82daad34826ee49bf5122c01fa46bd44a6f8e82e10f37eabedc99747ff44cc487c3851e698f164c258cf7c884efd291f727a447ab7103ba2b0cd4ed3b
7
- data.tar.gz: 1a73a86c1245951d5fcd5fe156c6e3cae1e97023ca814ad3ffcb47c3ed3dcb3735d899bd090eacdb44e3cbe4e3f94cd41002089186f8d7dabf8c9e3741be3513
6
+ metadata.gz: 13bbef8d413f9bbfacf5072a19331e3ae377e06bf536e0f23496caae5add0de44eef60e85cfa537df1fd7c6de123a443e0e134b0bc068800896202eb392282cf
7
+ data.tar.gz: 4771ca6511b1104e4af8a08f5c495de03bcb18aa99ab95124b2c3936d1c6f302fd7565a127310b951ce8e593048752a12cb25b71027e2338b839e300bd7d8b16
data/HISTORY CHANGED
@@ -1,5 +1,9 @@
1
1
  = Release History
2
2
 
3
+ == 5.0.3 / 2024-03-11
4
+
5
+ * Update xmlStructuredErrorFunc to be backwards compatible
6
+
3
7
  == 5.0.2 / 2024-01-08
4
8
 
5
9
  * Fix broken DTD creation (DTD name is not required)
@@ -97,7 +97,11 @@ VALUE rxml_error_wrap(const xmlError *xerror)
97
97
  }
98
98
 
99
99
  /* Hook that receives xml error message */
100
+ #if LIBXML_VERSION >= 21200
100
101
  static void structuredErrorFunc(void *userData, const xmlError *xerror)
102
+ #else
103
+ static void structuredErrorFunc(void *userData, xmlErrorPtr xerror)
104
+ #endif
101
105
  {
102
106
  VALUE error = rxml_error_wrap(xerror);
103
107
 
@@ -1,9 +1,9 @@
1
1
  /* Don't nuke this block! It is used for automatically updating the
2
2
  * versions below. VERSION = string formatting, VERNUM = numbered
3
3
  * version for inline testing: increment both or none at all.*/
4
- #define RUBY_LIBXML_VERSION "5.0.2"
5
- #define RUBY_LIBXML_VERNUM 502
4
+ #define RUBY_LIBXML_VERSION "5.0.3"
5
+ #define RUBY_LIBXML_VERNUM 503
6
6
  #define RUBY_LIBXML_VER_MAJ 5
7
7
  #define RUBY_LIBXML_VER_MIN 0
8
- #define RUBY_LIBXML_VER_MIC 2
8
+ #define RUBY_LIBXML_VER_MIC 3
9
9
  #define RUBY_LIBXML_VER_PATCH 0
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libxml-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.2
4
+ version: 5.0.3
5
5
  platform: x64-mingw-ucrt
6
6
  authors:
7
7
  - Ross Bamform
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2024-01-08 00:00:00.000000000 Z
17
+ date: 2024-03-11 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: rake-compiler
@@ -276,7 +276,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
276
276
  - !ruby/object:Gem::Version
277
277
  version: '0'
278
278
  requirements: []
279
- rubygems_version: 3.5.3
279
+ rubygems_version: 3.5.6
280
280
  signing_key:
281
281
  specification_version: 4
282
282
  summary: Ruby Bindings for LibXML2