re2 2.15.0.rc1-x86_64-linux-musl → 2.15.0-x86_64-linux-musl

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: 3f541d5c3f939c84824e0b11bd7bccdbf47b78dc880c78c998e3f6d413954fc4
4
- data.tar.gz: 2433db30855a165caa4a7a5dedb8619cf4d5b61489bb551efa1d5659479d8f51
3
+ metadata.gz: 7386e30ecc0f8959512ca679862086c1283287ed4ce5c3b42f7e4359756fc03f
4
+ data.tar.gz: 05fd5fb1c3a54228de335cb76c52c5eb633ddf4cf0506a3d6d47a31535aaefaa
5
5
  SHA512:
6
- metadata.gz: cbd33c979568cf436f0cdda0ef561c08d260753cc1f724bc1f6b586c3c1430fa3a6740ca8a9c805c10b6262b34232c7f67aa4ef0a2b99e3cebab49d3994dea57
7
- data.tar.gz: d42e12eb56f948c9d5640f014a4fbd21cded224fcfbcd36b3dcac3ebf00ed4c5e3c212f904291458464a0411805e003b025da4e8e5601616aba2959cf1473b6e
6
+ metadata.gz: 8f3271abe08dab8a185f8e2fea04acc89b455892a34c5cb7fa303ee66b4ed6927ab2de16e1951f1127e090f23c4344f710d4853a3d0f5e257fc18aac201a51e7
7
+ data.tar.gz: 7953e181cf6c5f9bfc05ae28ccd4c7d8218afa68af8bbc8539a7fc6fea3ec2dfdf1598ec598d45612ecae2fa7962bddeb896a0135bf79f3da1cd3f76f7a6c1aa
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/2.6/re2.so ADDED
Binary file
data/lib/2.7/re2.so ADDED
Binary file
data/lib/3.0/re2.so ADDED
Binary file
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/3.4/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.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,7 +1,7 @@
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: x86_64-linux-musl
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-12-16 00:00:00.000000000 Z
12
+ date: 2025-01-06 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.7.0.rc1
34
+ version: 1.8.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.7.0.rc1
41
+ version: 1.8.0
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: rspec
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -70,6 +70,9 @@ files:
70
70
  - ext/re2/extconf.rb
71
71
  - ext/re2/re2.cc
72
72
  - ext/re2/recipes.rb
73
+ - lib/2.6/re2.so
74
+ - lib/2.7/re2.so
75
+ - lib/3.0/re2.so
73
76
  - lib/3.1/re2.so
74
77
  - lib/3.2/re2.so
75
78
  - lib/3.3/re2.so
@@ -100,20 +103,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
100
103
  requirements:
101
104
  - - ">="
102
105
  - !ruby/object:Gem::Version
103
- version: '3.1'
106
+ version: '2.6'
104
107
  - - "<"
105
108
  - !ruby/object:Gem::Version
106
109
  version: 3.5.dev
107
110
  required_rubygems_version: !ruby/object:Gem::Requirement
108
111
  requirements:
109
- - - ">"
110
- - !ruby/object:Gem::Version
111
- version: 1.3.1
112
112
  - - ">="
113
113
  - !ruby/object:Gem::Version
114
114
  version: 3.3.22
115
115
  requirements: []
116
- rubygems_version: 3.3.26
116
+ rubygems_version: 3.3.27
117
117
  signing_key:
118
118
  specification_version: 4
119
119
  summary: Ruby bindings to RE2.