Skip to content

Commit 396f4c7

Browse files
authored
fix(ruby): Update cargo and gemfile lock (#52)
* fix(ruby): Update cargo and gemfile lock * add readme release steps * bump to v3.2.4
1 parent 24a22d5 commit 396f4c7

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

ruby-sdk/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ruby-sdk/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
eppo-server-sdk (3.2.2)
4+
eppo-server-sdk (3.2.4)
55
rb_sys (~> 0.9.102)
66

77
GEM

ruby-sdk/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,8 @@ eppo_core = { path = '../eppo_core' }
2020
```
2121

2222
Make sure you remove the override before updating `Cargo.lock`. Otherwise, the lock file will be missing `eppo_core` checksum and will be unsuitable for release. (CI will warn you if you do this accidentally.)
23+
24+
## Releasing
25+
26+
* Bump versions in `ruby-sdk/lib/eppo_client/version.rb` and `ruby-sdk/ext/eppo_client/Cargo.toml`.
27+
* Run `cargo update --workspace --verbose` to update `Cargo.lock` and `Gemfile.lock`.

ruby-sdk/ext/eppo_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "eppo_client"
33
# TODO: this version and lib/eppo_client/version.rb should be in sync
4-
version = "3.2.3"
4+
version = "3.2.4"
55
edition = "2021"
66
license = "MIT"
77
publish = false

ruby-sdk/lib/eppo_client/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
# TODO: this version and ext/eppo_client/Cargo.toml should be in sync
44
module EppoClient
5-
VERSION = "3.2.3"
5+
VERSION = "3.2.4"
66
end

0 commit comments

Comments
 (0)