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.
- checksums.yaml +4 -4
- data/README.md +14 -6
- data/lib/cel/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84dbc0c932c059a392416294cb936f7986b8d4718fd5bd91e30afd2c121d3a68
|
|
4
|
+
data.tar.gz: 52763c42c348f277cbe550831a4e56ae2fb0dbdb8e7df26a26eec7004461a5ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
118
|
-
(`x86_64-linux`, `aarch64-linux`, `x86_64-linux-musl`, `
|
|
119
|
-
`x86_64-darwin`) to
|
|
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.
|
|
129
|
-
|
|
129
|
+
# 2. Refresh Gemfile.lock's local gem version
|
|
130
|
+
bundle install
|
|
130
131
|
|
|
131
|
-
# 3.
|
|
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
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
|
|
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-
|
|
11
|
+
date: 2026-07-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|