ox 2.14.3 → 2.14.4

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: 61328d1ef231a8c0ad2f7fad60e7d05e5ea04b61d524c092c889181d988e0fbd
4
- data.tar.gz: d290d80bde79d99e9948b2d48ff53258cef7bc26651dac8a380fe1ee0aa2b05b
3
+ metadata.gz: 8bef5b070b17c09cb705e4a6f9b89f7de94c32d426057261cc2c763f10217fa8
4
+ data.tar.gz: e79898f9f7100fe30c99bbb111d52098316e19422afe47f91721f1de36aa5c0b
5
5
  SHA512:
6
- metadata.gz: 436b12b1b9852b022c6425f1abeeb0aa74072d7ce7125b6dc6ef69e064cf287be7156a1a776282cb0db190fdda5098dc5da49ce40e2e7fa411eb700c50aecd2e
7
- data.tar.gz: 6763e7b50c43db54cc4be1da5d59a4c8e7598ddbc4eeb496881c21442d14b21893fa90007340f99089282b4e8eb77a4fa9a54c57d15e5f163050fc2de7359b50
6
+ metadata.gz: e1079d0bd17806632a2eea08ec38e78baba5262af6b5ec58c434bf1bc2520fad6850680a6cb53a1e1dac67b175de3487f639d75e19b76cbeb9960bdd1db5e4b9
7
+ data.tar.gz: 941904c648314466f078c72a8004cb0f5da2e39ca5883485f1af8b4daf698d6bf528f38e4c84bc056ad01e7fa6c5333ff26a8665acf3af932c51ede5ef40c0f6
data/CHANGELOG.md CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
3
  All changes to the Ox gem are documented here. Releases follow semantic versioning.
4
4
 
5
- ## [2.14.3] - 2021-03-22
5
+ ## [2.14.4] - 2021-03-19
6
+
7
+ ### Fixed
8
+
9
+ - Really fixed code issue around HAVE_RB_ENC_ASSOCIATE.
10
+
11
+ ## [2.14.3] - 2021-03-12
6
12
 
7
13
  ### Fixed
8
14
 
data/ext/ox/gen_load.c CHANGED
@@ -123,11 +123,11 @@ create_prolog_doc(PInfo pi, const char *target, Attr attrs) {
123
123
  rb_enc_associate(rstr, pi->options->rb_enc);
124
124
  }
125
125
  rb_hash_aset(ah, rstr, rb_str_new2(attrs->value));
126
- if (0 == strcmp("encoding", attrs->name)) {
127
- pi->options->rb_enc = rb_enc_find(attrs->value);
128
- }
129
126
  #endif
130
127
  }
128
+ if (0 == strcmp("encoding", attrs->name)) {
129
+ pi->options->rb_enc = rb_enc_find(attrs->value);
130
+ }
131
131
  }
132
132
  nodes = rb_ary_new();
133
133
  rb_ivar_set(doc, ox_attributes_id, ah);
data/lib/ox/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
2
  module Ox
3
3
  # Current version of the module.
4
- VERSION = '2.14.3'
4
+ VERSION = '2.14.4'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ox
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.14.3
4
+ version: 2.14.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Ohler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-11 00:00:00.000000000 Z
11
+ date: 2021-03-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: "A fast XML parser and object serializer that uses only standard C lib.\n\nOptimized
14
14
  XML (Ox), as the name implies was written to provide speed optimized\nXML handling.