unf_ext 0.0.9-x64-mingw32 → 0.0.9.1-x64-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 +4 -4
 - data/CHANGELOG.md +6 -0
 - data/ext/unf_ext/unf.cc +5 -1
 - data/lib/2.4/unf_ext.so +0 -0
 - data/lib/2.5/unf_ext.so +0 -0
 - data/lib/2.6/unf_ext.so +0 -0
 - data/lib/2.7/unf_ext.so +0 -0
 - data/lib/3.0/unf_ext.so +0 -0
 - data/lib/unf_ext/version.rb +1 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 727870245cbb9cfd0d862b0ce9f5684c6ca3acf866270973a3331c4dc6f3835e
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 7b23b78613fd5e7521d93346ed4deffd4d8d4df653f31529180c471559645775
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 5e2fe06b32df26f984aa87f64fcff9c9f4f08670e09ef9188d1ecd26f875d8681ffd26b1671dc5bc71b8d645e2900e47546edae16f771dad43da94b1d47fefba
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 8fa799caf49798a480df5b6d017a5e1c1362fedecc468bc6440fa0156129e66620c4482e875b62cdf2450b4cc96b844dcc6eebddae70be3a041efc1c034f3683
         
     | 
    
        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 
     | 
    
         
            -
                  . 
     | 
| 
      
 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/unf_ext/version.rb
    CHANGED
    
    
    
        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: x64-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- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2023-11-16 00:00:00.000000000 Z
         
     | 
| 
       13 
13 
     | 
    
         
             
            dependencies:
         
     | 
| 
       14 
14 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       15 
15 
     | 
    
         
             
              name: rake
         
     |