re2 2.6.0.rc1-x64-mingw-ucrt → 2.6.0-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 +4 -4
 - data/README.md +33 -3
 - data/lib/3.1/re2.so +0 -0
 - data/lib/3.2/re2.so +0 -0
 - data/lib/3.3/re2.so +0 -0
 - data/lib/re2/version.rb +1 -1
 - data/re2.gemspec +1 -1
 - metadata +6 -6
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: '09d7db8b5730e34eaf871eeab9fa2f313c322af71f96021f6f686d751dbc28c9'
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: e920aa68a74488e00c9fe5fa023ca8fb018a742ef6d315b89091d8e2523d14e7
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 50bd16eea40c7e71b2c6c2ead25c33baeeef11f284a7924ec309210bb56256cb48f3a052ba40a4c61f5767e42f89f67b2941917f0d322e4294f505c170ec9a7e
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: e5970b116632a3d6243b1de3ba37c036ad7ed761f830756f61ef8ce0b9307e7c1ef2b866e184e218c3dfd379dc56928b450118385342a329230ee5cd5dbfcc0c
         
     | 
    
        data/README.md
    CHANGED
    
    | 
         @@ -6,7 +6,7 @@ Python". 
     | 
|
| 
       6 
6 
     | 
    
         | 
| 
       7 
7 
     | 
    
         
             
            [](https://github.com/mudge/re2/actions)
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
       9 
     | 
    
         
            -
            **Current version:** 2. 
     | 
| 
      
 9 
     | 
    
         
            +
            **Current version:** 2.6.0  
         
     | 
| 
       10 
10 
     | 
    
         
             
            **Bundled RE2 version:** libre2.11 (2023-11-01)  
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
            ```ruby
         
     | 
| 
         @@ -30,6 +30,7 @@ RE2('(\w+):(\d+)').full_match("ruby:1234") 
     | 
|
| 
       30 
30 
     | 
    
         
             
                * [Encoding](#encoding)
         
     | 
| 
       31 
31 
     | 
    
         
             
            * [Requirements](#requirements)
         
     | 
| 
       32 
32 
     | 
    
         
             
                * [Native gems](#native-gems)
         
     | 
| 
      
 33 
     | 
    
         
            +
                * [Verifying the gems](#verifying-the-gems)
         
     | 
| 
       33 
34 
     | 
    
         
             
                * [Installing the `ruby` platform gem](#installing-the-ruby-platform-gem)
         
     | 
| 
       34 
35 
     | 
    
         
             
                * [Using system libraries](#using-system-libraries)
         
     | 
| 
       35 
36 
     | 
    
         
             
            * [Thanks](#thanks)
         
     | 
| 
         @@ -266,11 +267,40 @@ It supports the following RE2 ABI versions: 
     | 
|
| 
       266 
267 
     | 
    
         | 
| 
       267 
268 
     | 
    
         
             
            Where possible, a pre-compiled native gem will be provided for the following platforms:
         
     | 
| 
       268 
269 
     | 
    
         | 
| 
       269 
     | 
    
         
            -
            * Linux 
     | 
| 
       270 
     | 
    
         
            -
            *  
     | 
| 
      
 270 
     | 
    
         
            +
            * Linux
         
     | 
| 
      
 271 
     | 
    
         
            +
                * `aarch64-linux` and `arm-linux` (requires [glibc](https://www.gnu.org/software/libc/) 2.29+)
         
     | 
| 
      
 272 
     | 
    
         
            +
                * `x86-linux` and `x86_64-linux` (requires [glibc](https://www.gnu.org/software/libc/) 2.17+)
         
     | 
| 
      
 273 
     | 
    
         
            +
                * [musl](https://musl.libc.org/)-based systems such as [Alpine](https://alpinelinux.org) are supported as long as a [glibc-compatible library is installed](https://wiki.alpinelinux.org/wiki/Running_glibc_programs)
         
     | 
| 
       271 
274 
     | 
    
         
             
            * macOS `x86_64-darwin` and `arm64-darwin`
         
     | 
| 
       272 
275 
     | 
    
         
             
            * Windows `x64-mingw32` and `x64-mingw-ucrt`
         
     | 
| 
       273 
276 
     | 
    
         | 
| 
      
 277 
     | 
    
         
            +
            ### Verifying the gems
         
     | 
| 
      
 278 
     | 
    
         
            +
             
     | 
| 
      
 279 
     | 
    
         
            +
            SHA256 checksums are included in the [release notes](https://github.com/mudge/re2/releases) for each version and can be checked with `sha256sum`, e.g.
         
     | 
| 
      
 280 
     | 
    
         
            +
             
     | 
| 
      
 281 
     | 
    
         
            +
            ```console
         
     | 
| 
      
 282 
     | 
    
         
            +
            $ gem fetch re2 -v 2.5.0
         
     | 
| 
      
 283 
     | 
    
         
            +
            Fetching re2-2.5.0-arm64-darwin.gem
         
     | 
| 
      
 284 
     | 
    
         
            +
            Downloaded re2-2.5.0-arm64-darwin
         
     | 
| 
      
 285 
     | 
    
         
            +
            $ sha256sum re2-2.5.0-arm64-darwin.gem
         
     | 
| 
      
 286 
     | 
    
         
            +
            4b20c4539a12787102b22012e678968af23f87e35f88843744835bd13ac9f6bc  re2-2.5.0-arm64-darwin.gem
         
     | 
| 
      
 287 
     | 
    
         
            +
            ```
         
     | 
| 
      
 288 
     | 
    
         
            +
             
     | 
| 
      
 289 
     | 
    
         
            +
            [GPG](https://www.gnupg.org/) signatures are attached to each release (the assets ending in `.sig`) and can be verified if you import [our signing key `0x39AC3530070E0F75`](https://mudge.name/39AC3530070E0F75.asc) (or fetch it from a public keyserver, e.g. `gpg --keyserver keyserver.ubuntu.com --recv-key 0x39AC3530070E0F75`):
         
     | 
| 
      
 290 
     | 
    
         
            +
             
     | 
| 
      
 291 
     | 
    
         
            +
            ```console
         
     | 
| 
      
 292 
     | 
    
         
            +
            $ gpg --verify re2-2.5.0-arm64-darwin.gem.sig re2-2.5.0-arm64-darwin.gem
         
     | 
| 
      
 293 
     | 
    
         
            +
            gpg: Signature made Fri 15 Dec 2023 12:58:58 GMT
         
     | 
| 
      
 294 
     | 
    
         
            +
            gpg:                using RSA key 702609D9C790F45B577D7BEC39AC3530070E0F75
         
     | 
| 
      
 295 
     | 
    
         
            +
            gpg: Good signature from "Paul Mucur <mudge@mudge.name>" [unknown]
         
     | 
| 
      
 296 
     | 
    
         
            +
            gpg:                 aka "Paul Mucur <paul@ghostcassette.com>" [unknown]
         
     | 
| 
      
 297 
     | 
    
         
            +
            gpg: WARNING: This key is not certified with a trusted signature!
         
     | 
| 
      
 298 
     | 
    
         
            +
            gpg:          There is no indication that the signature belongs to the owner.
         
     | 
| 
      
 299 
     | 
    
         
            +
            Primary key fingerprint: 7026 09D9 C790 F45B 577D  7BEC 39AC 3530 070E 0F75
         
     | 
| 
      
 300 
     | 
    
         
            +
            ```
         
     | 
| 
      
 301 
     | 
    
         
            +
             
     | 
| 
      
 302 
     | 
    
         
            +
            The fingerprint should be as shown above or you can independently verify it with the ones shown in the footer of https://mudge.name.
         
     | 
| 
      
 303 
     | 
    
         
            +
             
     | 
| 
       274 
304 
     | 
    
         
             
            ### Installing the `ruby` platform gem
         
     | 
| 
       275 
305 
     | 
    
         | 
| 
       276 
306 
     | 
    
         
             
            > [!WARNING]
         
     | 
    
        data/lib/3.1/re2.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/3.2/re2.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/3.3/re2.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/re2/version.rb
    CHANGED
    
    
    
        data/re2.gemspec
    CHANGED
    
    | 
         @@ -39,7 +39,7 @@ Gem::Specification.new do |s| 
     | 
|
| 
       39 
39 
     | 
    
         
             
                "spec/re2/scanner_spec.rb"
         
     | 
| 
       40 
40 
     | 
    
         
             
              ]
         
     | 
| 
       41 
41 
     | 
    
         
             
              s.add_development_dependency("rake-compiler", "~> 1.2.5")
         
     | 
| 
       42 
     | 
    
         
            -
              s.add_development_dependency("rake-compiler-dock", "~> 1.4.0 
     | 
| 
      
 42 
     | 
    
         
            +
              s.add_development_dependency("rake-compiler-dock", "~> 1.4.0")
         
     | 
| 
       43 
43 
     | 
    
         
             
              s.add_development_dependency("rspec", "~> 3.2")
         
     | 
| 
       44 
44 
     | 
    
         
             
              s.add_runtime_dependency("mini_portile2", "~> 2.8.5") # keep version in sync with extconf.rb
         
     | 
| 
       45 
45 
     | 
    
         
             
            end
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: re2
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 2.6.0 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 2.6.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: x64-mingw-ucrt
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Paul Mucur
         
     | 
| 
         @@ -9,7 +9,7 @@ authors: 
     | 
|
| 
       9 
9 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       10 
10 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       11 
11 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       12 
     | 
    
         
            -
            date: 2023-12- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2023-12-27 00:00:00.000000000 Z
         
     | 
| 
       13 
13 
     | 
    
         
             
            dependencies:
         
     | 
| 
       14 
14 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       15 
15 
     | 
    
         
             
              name: rake-compiler
         
     | 
| 
         @@ -31,14 +31,14 @@ dependencies: 
     | 
|
| 
       31 
31 
     | 
    
         
             
                requirements:
         
     | 
| 
       32 
32 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       33 
33 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       34 
     | 
    
         
            -
                    version: 1.4.0 
     | 
| 
      
 34 
     | 
    
         
            +
                    version: 1.4.0
         
     | 
| 
       35 
35 
     | 
    
         
             
              type: :development
         
     | 
| 
       36 
36 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       37 
37 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       38 
38 
     | 
    
         
             
                requirements:
         
     | 
| 
       39 
39 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       40 
40 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       41 
     | 
    
         
            -
                    version: 1.4.0 
     | 
| 
      
 41 
     | 
    
         
            +
                    version: 1.4.0
         
     | 
| 
       42 
42 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       43 
43 
     | 
    
         
             
              name: rspec
         
     | 
| 
       44 
44 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -105,9 +105,9 @@ required_ruby_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       105 
105 
     | 
    
         
             
                  version: 3.4.dev
         
     | 
| 
       106 
106 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       107 
107 
     | 
    
         
             
              requirements:
         
     | 
| 
       108 
     | 
    
         
            -
              - - " 
     | 
| 
      
 108 
     | 
    
         
            +
              - - ">="
         
     | 
| 
       109 
109 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       110 
     | 
    
         
            -
                  version:  
     | 
| 
      
 110 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
       111 
111 
     | 
    
         
             
            requirements: []
         
     | 
| 
       112 
112 
     | 
    
         
             
            rubygems_version: 3.3.26
         
     | 
| 
       113 
113 
     | 
    
         
             
            signing_key: 
         
     |