re2 2.15.0.rc1 → 2.15.0

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: 589e47e3e7a104d94cae011e17b30476e5a49a47ad69f5a017727d86c8de71bf
4
- data.tar.gz: 9052d69d3d1004060a4188c3a4b95cb5526e3ed7af41e2f6c209dfaee3731a3e
3
+ metadata.gz: 92d0c12dc899d22cf74c00bbda8f89f29665b32d10fcc9a8eb9ca01f671c62f5
4
+ data.tar.gz: 1aea6bbc6cc7168a5a16fbb52b244535ed422707f63ebac59c2a0d1ae81bfbaf
5
5
  SHA512:
6
- metadata.gz: 8c47b84698f47204a1abd692c589d5c5894c9bacd1f80019511c9e4ada334fa3bb5ecede9df3221bd14d2a3af95eb69a06b1ec5a7266ab246a3572098710417f
7
- data.tar.gz: e379d6b3bf53b5af2eec5e329eab5474d3445cd3ec5fac09d785a1f74dc1333c9d97eae04b7b7833aed90045727c7f5b6bb004057c19b290a2ef5af7d7669a1d
6
+ metadata.gz: ff0c9014a05c741b9bc7f3b9961c9e36a97cc4e48f7546779a4ceca60ff225c84a3930acd7daf5d58225aa051b0d6ee475ce778c66ecd3f3643d522bd105b72b
7
+ data.tar.gz: ea0b6da27aa3e568821dc48a452fcd3e4e16600fe66e3964702d37c56e2f9247d16130e95a60c83684530633937b810539cf45d5c0f842f88d4ccc5b35dafa53
data/README.md CHANGED
@@ -6,7 +6,7 @@ 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.15.0.rc1
9
+ **Current version:** 2.15.0
10
10
  **Bundled RE2 version:** libre2.11 (2024-07-02)
11
11
 
12
12
  ```ruby
@@ -257,7 +257,7 @@ RE2(non_latin1_pattern.encode("ISO-8859-1"), utf8: false).match(non_latin1_text.
257
257
 
258
258
  This gem requires the following to run:
259
259
 
260
- * [Ruby](https://www.ruby-lang.org/en/) 3.1 to 3.4.0-rc1
260
+ * [Ruby](https://www.ruby-lang.org/en/) 2.6 to 3.4
261
261
 
262
262
  It supports the following RE2 ABI versions:
263
263
 
@@ -271,7 +271,7 @@ Where possible, a pre-compiled native gem will be provided for the following pla
271
271
  * `aarch64-linux`, `arm-linux`, `x86-linux` and `x86_64-linux` (requires [glibc](https://www.gnu.org/software/libc/) 2.29+, RubyGems 3.3.22+ and Bundler 2.3.21+)
272
272
  * [musl](https://musl.libc.org/)-based systems such as [Alpine](https://alpinelinux.org) are supported with Bundler 2.5.6+
273
273
  * macOS `x86_64-darwin` and `arm64-darwin`
274
- * Windows `x64-mingw-ucrt`
274
+ * Windows `x64-mingw32` and `x64-mingw-ucrt`
275
275
 
276
276
  ### Verifying the gems
277
277
 
data/Rakefile CHANGED
@@ -33,7 +33,7 @@ cross_platforms = %w[
33
33
  x86_64-linux-musl
34
34
  ].freeze
35
35
 
36
- ENV['RUBY_CC_VERSION'] = %w[3.4.0 3.3.5 3.2.0 3.1.0].join(':')
36
+ ENV['RUBY_CC_VERSION'] = '3.4.1:3.3.5:3.2.6:3.1.6:3.0.7:2.7.8:2.6.10'
37
37
 
38
38
  Gem::PackageTask.new(re2_gemspec).define
39
39
 
data/lib/re2/version.rb CHANGED
@@ -10,5 +10,5 @@
10
10
 
11
11
 
12
12
  module RE2
13
- VERSION = "2.15.0.rc1"
13
+ VERSION = "2.15.0"
14
14
  end
data/re2.gemspec CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.homepage = "https://github.com/mudge/re2"
12
12
  s.extensions = ["ext/re2/extconf.rb"]
13
13
  s.license = "BSD-3-Clause"
14
- s.required_ruby_version = ">= 3.1.0"
14
+ s.required_ruby_version = ">= 2.6.0"
15
15
  s.files = [
16
16
  "dependencies.yml",
17
17
  "ext/re2/extconf.rb",
@@ -41,7 +41,7 @@ Gem::Specification.new do |s|
41
41
  "spec/re2/scanner_spec.rb"
42
42
  ]
43
43
  s.add_development_dependency("rake-compiler", "~> 1.2.7")
44
- s.add_development_dependency("rake-compiler-dock", "~> 1.7.0.rc1")
44
+ s.add_development_dependency("rake-compiler-dock", "~> 1.8.0")
45
45
  s.add_development_dependency("rspec", "~> 3.2")
46
46
  s.add_runtime_dependency("mini_portile2", "~> 2.8.7") # keep version in sync with extconf.rb
47
47
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: re2
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.15.0.rc1
4
+ version: 2.15.0
5
5
  platform: ruby
6
- original_platform: ''
7
6
  authors:
8
7
  - Paul Mucur
9
8
  - Stan Hu
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2024-12-16 00:00:00.000000000 Z
11
+ date: 2025-01-06 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rake-compiler
@@ -31,14 +30,14 @@ dependencies:
31
30
  requirements:
32
31
  - - "~>"
33
32
  - !ruby/object:Gem::Version
34
- version: 1.7.0.rc1
33
+ version: 1.8.0
35
34
  type: :development
36
35
  prerelease: false
37
36
  version_requirements: !ruby/object:Gem::Requirement
38
37
  requirements:
39
38
  - - "~>"
40
39
  - !ruby/object:Gem::Version
41
- version: 1.7.0.rc1
40
+ version: 1.8.0
42
41
  - !ruby/object:Gem::Dependency
43
42
  name: rspec
44
43
  requirement: !ruby/object:Gem::Requirement
@@ -111,14 +110,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
111
110
  requirements:
112
111
  - - ">="
113
112
  - !ruby/object:Gem::Version
114
- version: 3.1.0
113
+ version: 2.6.0
115
114
  required_rubygems_version: !ruby/object:Gem::Requirement
116
115
  requirements:
117
116
  - - ">="
118
117
  - !ruby/object:Gem::Version
119
118
  version: '0'
120
119
  requirements: []
121
- rubygems_version: 3.6.0.dev
120
+ rubygems_version: 3.6.2
122
121
  specification_version: 4
123
122
  summary: Ruby bindings to RE2.
124
123
  test_files: