re2 2.7.0-x64-mingw-ucrt → 2.8.0-x64-mingw-ucrt

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1fa9aaf466315cb8bc54c678e30267b27006dba816b7440a740aa22c160800dd
4
- data.tar.gz: 186559186c17f50a6035b58ed15063189d759986385100b9ebcb5f0666da4af4
3
+ metadata.gz: cc489e264ef9a86acd91c7c8e1d45b9eeb835fa732e9ad6c0acc4c8994bf001b
4
+ data.tar.gz: 131bb50314c8f58a3326572647334b75f0c3dd611a56760c8829d16ab19c5623
5
5
  SHA512:
6
- metadata.gz: 9ecdb9c82b0f32bdf9020405d6e84fac24190d0062526fc4b4f30eac7943546d5da2340d43cf6b142696115f0bdbe8d41b112a23041bda4805cd105aa29a768e
7
- data.tar.gz: af52178c55f1b489302f90234488f1b7e366112bd5a6e84872cecacc6c4ec4584f5af8741f44f1220145bdeccb6de4a419afaf8df59988f96d2124a11a840bb6
6
+ metadata.gz: '0951ba3a9a01e35b4390bfb271c8af1d4d777b2d1a560e3bf42b848ecaeb60085cff95c0b0ceaffd8675e8dde27d33db500960bb320794458abe297e0ca521db'
7
+ data.tar.gz: bed436acf8b9e14574bb332282f30613eabc6dadc56529e175542ba17cc6ccd20bf6a4ef025703ac40993dd93276145391423aebc21ccce0d570def41941a0f4
data/README.md CHANGED
@@ -6,8 +6,8 @@ Python".
6
6
 
7
7
  [![Build Status](https://github.com/mudge/re2/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/mudge/re2/actions)
8
8
 
9
- **Current version:** 2.7.0
10
- **Bundled RE2 version:** libre2.11 (2023-11-01)
9
+ **Current version:** 2.8.0
10
+ **Bundled RE2 version:** libre2.11 (2024-02-01)
11
11
 
12
12
  ```ruby
13
13
  RE2('h.*o').full_match?("hello") #=> true
@@ -261,7 +261,7 @@ This gem requires the following to run:
261
261
 
262
262
  It supports the following RE2 ABI versions:
263
263
 
264
- * libre2.0 (prior to release 2020-03-02) to libre2.11 (2023-07-01 to 2023-11-01)
264
+ * libre2.0 (prior to release 2020-03-02) to libre2.11 (2023-07-01 to 2024-02-01)
265
265
 
266
266
  ### Native gems
267
267
 
@@ -279,18 +279,18 @@ Where possible, a pre-compiled native gem will be provided for the following pla
279
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
280
 
281
281
  ```console
282
- $ gem fetch re2 -v 2.6.0
283
- Fetching re2-2.6.0-arm64-darwin.gem
284
- Downloaded re2-2.6.0-arm64-darwin
285
- $ sha256sum re2-2.6.0-arm64-darwin.gem
286
- ba6fda7a29cd16179d5401c1b4917ba204c92e5ca9d25df80d840ed76fca439f re2-2.6.0-arm64-darwin.gem
282
+ $ gem fetch re2 -v 2.7.0
283
+ Fetching re2-2.7.0-arm64-darwin.gem
284
+ Downloaded re2-2.7.0-arm64-darwin
285
+ $ sha256sum re2-2.7.0-arm64-darwin.gem
286
+ 7d993f27a1afac4001c539a829e2af211ced62604930c90df32a307cf74cb4a4 re2-2.7.0-arm64-darwin.gem
287
287
  ```
288
288
 
289
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
290
 
291
291
  ```console
292
- $ gpg --verify re2-2.6.0-arm64-darwin.gem.sig re2-2.6.0-arm64-darwin.gem
293
- gpg: Signature made Wed 27 Dec 19:26:53 2023 GMT
292
+ $ gpg --verify re2-2.7.0-arm64-darwin.gem.sig re2-2.7.0-arm64-darwin.gem
293
+ gpg: Signature made Sat 20 Jan 15:01:45 2024 GMT
294
294
  gpg: using RSA key 702609D9C790F45B577D7BEC39AC3530070E0F75
295
295
  gpg: Good signature from "Paul Mucur <mudge@mudge.name>" [unknown]
296
296
  gpg: aka "Paul Mucur <paul@ghostcassette.com>" [unknown]
data/dependencies.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  libre2:
3
- version: '2023-11-01'
4
- sha256: 4e6593ac3c71de1c0f322735bc8b0492a72f66ffccfad76e259fa21c41d27d8a
3
+ version: '2024-02-01'
4
+ sha256: cd191a311b84fcf37310e5cd876845b4bf5aee76fdd755008eef3b6478ce07bb
5
5
  abseil:
6
- version: '20230802.1'
7
- sha256: 987ce98f02eefbaf930d6e38ab16aa05737234d7afbab2d5c4ea7adbe50c28ed
6
+ version: '20240116.0'
7
+ sha256: 338420448b140f0dfd1a1ea3c3ce71b3bc172071f24f4d9a57d59b45037da440
data/ext/re2/re2.cc CHANGED
@@ -743,8 +743,9 @@ static VALUE re2_matchdata_inspect(const VALUE self) {
743
743
  if (match == Qnil) {
744
744
  output << "nil";
745
745
  } else {
746
- output << "\"" << re2::StringPiece(RSTRING_PTR(match),
747
- RSTRING_LEN(match)) << "\"";
746
+ output << "\"";
747
+ output.write(RSTRING_PTR(match), RSTRING_LEN(match));
748
+ output << "\"";
748
749
  }
749
750
  }
750
751
 
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
@@ -10,5 +10,5 @@
10
10
 
11
11
 
12
12
  module RE2
13
- VERSION = "2.7.0"
13
+ VERSION = "2.8.0"
14
14
  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.7.0
4
+ version: 2.8.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: 2024-01-20 00:00:00.000000000 Z
12
+ date: 2024-01-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake-compiler