cel-rs-rb 0.2.0.pre.1-x86_64-linux → 0.2.0-x86_64-linux

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +14 -6
  3. data/lib/cel/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0bb26cd6624af6234cbe2ede8df8bb8e113326905b40cc57892095aefc25704e
4
- data.tar.gz: e062eac65700fcd3daa9b76da9d87cc473cc7350a69fb6668b9d94dd1f5f2440
3
+ metadata.gz: 84dbc0c932c059a392416294cb936f7986b8d4718fd5bd91e30afd2c121d3a68
4
+ data.tar.gz: 52763c42c348f277cbe550831a4e56ae2fb0dbdb8e7df26a26eec7004461a5ea
5
5
  SHA512:
6
- metadata.gz: 4f6bf5242d1a5045fe923de822be8aa664cf8452f1595a956cd70cb712f8ef7418c8770b9a951b652795b579a35700131e0604f5351b1a692f3577e93c35d149
7
- data.tar.gz: b6f8e19deaf7f886bb1a50d4201a500fb05165721f1c60e5fad5b6dc12239f2e3f5e61a569cb78b5ae428fb63c917c9060e3a45f16ed48da00ac03ba60fd555d
6
+ metadata.gz: b264ec6eed57acc4555b1cfcd606e4d08faf51aa24729d997352c7289442a7b7a3d39d175d88475a0fa9b2086a29daabc0d179fc4ba33257e3c68c68b9f16a45
7
+ data.tar.gz: 556e5bc7f77a09cd97a919f340f327454858ee529c1a986c9c862e825fcc065de67df073b3815f349d34c7f9fb48ca090af30c499a6a997a4920f10f76a37abd
data/README.md CHANGED
@@ -114,9 +114,10 @@ CI also runs the test suite on Ruby 3.3, Ruby 3.4, and Ruby 4.0 through Buildkit
114
114
 
115
115
  ## Releasing
116
116
 
117
- Releases publish **precompiled native gems** for five platforms
118
- (`x86_64-linux`, `aarch64-linux`, `x86_64-linux-musl`, `arm64-darwin`,
119
- `x86_64-darwin`) to [rubygems.org](https://rubygems.org/gems/cel-rs-rb).
117
+ Releases publish **precompiled native gems** for six platforms
118
+ (`x86_64-linux`, `aarch64-linux`, `x86_64-linux-musl`, `aarch64-linux-musl`,
119
+ `arm64-darwin`, `x86_64-darwin`) to
120
+ [rubygems.org](https://rubygems.org/gems/cel-rs-rb).
120
121
 
121
122
  ### Cutting a release
122
123
 
@@ -125,15 +126,22 @@ file and tag the same version:
125
126
 
126
127
  ```bash
127
128
  # 1. Bump CEL::VERSION in lib/cel/version.rb (e.g. "0.2.0")
128
- # 2. Commit the bump
129
- git commit -am "Release v0.2.0"
129
+ # 2. Refresh Gemfile.lock's local gem version
130
+ bundle install
130
131
 
131
- # 3. Tag that commit (the v-prefix triggers the release pipeline)
132
+ # 3. Commit the bump
133
+ git add lib/cel/version.rb Gemfile.lock
134
+ git commit -m "Release v0.2.0"
135
+
136
+ # 4. Tag that commit (the v-prefix triggers the release pipeline)
132
137
  git tag v0.2.0
133
138
  git push origin main
134
139
  git push origin v0.2.0
135
140
  ```
136
141
 
142
+ `Gemfile.lock` includes a local `cel-rs-rb` path entry, so commit its version
143
+ change alongside `lib/cel/version.rb`.
144
+
137
145
  The `release:verify-tag` step fails the build if the tag and
138
146
  `CEL::VERSION` disagree, so the tag (`v0.2.0`) must match `version.rb`
139
147
  (`0.2.0`).
data/lib/cel/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CEL
4
- VERSION = "0.2.0.pre.1"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cel-rs-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0.pre.1
4
+ version: 0.2.0
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - CEL Ruby Contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-01 00:00:00.000000000 Z
11
+ date: 2026-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake