unf_ext 0.0.9-x86-mingw32 → 0.0.9.1-x86-mingw32

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: 0b8c714f79595d30e51cfd4a5aa3b7aa35fbcdbc65e12cdcd2583c2e60ba7b45
4
- data.tar.gz: ac5bcb45c22d3d95451cfef2ae5d3f79593fd28092a823125f0dbb2b53549a1c
3
+ metadata.gz: 8b5976e0d066339ca3a3699cb89fa56352b3ca37fc715441ac40f952216fe6c5
4
+ data.tar.gz: a5a03074eb573dc7035c73ad63aa45b943ea2c1dec2f45ff1193b1d5cf42a626
5
5
  SHA512:
6
- metadata.gz: a1060824ec201a7f8fbeb7bd0c69992fe32afe40365937f4e04625768f7395fc47838cb8d2e3dafbfda9341f13fa5859375f7314343da53a5698d7d5ed59ae33
7
- data.tar.gz: 9fa37db63a24970bbd0c68b5bd7e9edb5c41abbdf35147bc0dc1d777d6a76074e30a34b0f19c5300a110d92aeca6c510fce99e3db7d40f2c142dc5a312256d6a
6
+ metadata.gz: 8b74a4b6ff508bbab40e9f2351a1272565bb7118fe6551306994a5ac86553726978f7b465ecb85c56218a28a0b6dded323471ba01b56bb007bdf45a5a2092f5e
7
+ data.tar.gz: d8402169b7723ad5d92115f1123faa63416108fd6336d2107a7d5cf17bacff968407c45e5d8e3d5249a3f8357a992d4862f20870fdce00b5f407ad33847ae8ea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.9.1](https://github.com/knu/ruby-unf_ext/tree/v0.0.9.1) (2023-11-16)
4
+
5
+ [Full Changelog](https://github.com/knu/ruby-unf_ext/compare/v0.0.9...v0.0.9.1)
6
+
7
+ - Fix use of designated initializers. [\#75](https://github.com/knu/ruby-unf_ext/pull/75) ([igorpeshansky](https://github.com/igorpeshansky))
8
+
3
9
  ## [0.0.9](https://github.com/knu/ruby-unf_ext/tree/v0.0.9) (2023-11-11)
4
10
 
5
11
  [Full Changelog](https://github.com/knu/ruby-unf_ext/compare/v0.0.8.2...v0.0.9)
data/ext/unf_ext/unf.cc CHANGED
@@ -33,8 +33,12 @@ extern "C" {
33
33
  static const rb_data_type_t unf_normalizer_data_type = {
34
34
  .wrap_struct_name = "UNF::Normalizer",
35
35
  .function = {
36
- .dfree = unf_delete
36
+ .dmark = NULL,
37
+ .dfree = unf_delete,
38
+ .dsize = NULL
37
39
  },
40
+ .parent = NULL,
41
+ .data = NULL,
38
42
  .flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
39
43
  };
40
44
 
data/lib/2.4/unf_ext.so CHANGED
Binary file
data/lib/2.5/unf_ext.so CHANGED
Binary file
data/lib/2.6/unf_ext.so CHANGED
Binary file
data/lib/2.7/unf_ext.so CHANGED
Binary file
data/lib/3.0/unf_ext.so CHANGED
Binary file
data/lib/3.1/unf_ext.so CHANGED
Binary file
data/lib/3.2/unf_ext.so CHANGED
Binary file
@@ -1,5 +1,5 @@
1
1
  module UNF
2
2
  class Normalizer
3
- VERSION = "0.0.9"
3
+ VERSION = "0.0.9.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unf_ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.9.1
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Takeru Ohta
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-11-11 00:00:00.000000000 Z
12
+ date: 2023-11-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake