Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ruby): Update cargo and gemfile lock #52

Merged
merged 3 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ruby-sdk/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ruby-sdk/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
eppo-server-sdk (3.2.2)
eppo-server-sdk (3.2.4)
rb_sys (~> 0.9.102)

GEM
Expand Down
5 changes: 5 additions & 0 deletions ruby-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ eppo_core = { path = '../eppo_core' }
```

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.)

## Releasing

* Bump versions in `ruby-sdk/lib/eppo_client/version.rb` and `ruby-sdk/ext/eppo_client/Cargo.toml`.
* Run `cargo update --workspace --verbose` to update `Cargo.lock` and `Gemfile.lock`.
2 changes: 1 addition & 1 deletion ruby-sdk/ext/eppo_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "eppo_client"
# TODO: this version and lib/eppo_client/version.rb should be in sync
version = "3.2.3"
version = "3.2.4"
edition = "2021"
license = "MIT"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion ruby-sdk/lib/eppo_client/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

# TODO: this version and ext/eppo_client/Cargo.toml should be in sync
module EppoClient
VERSION = "3.2.3"
VERSION = "3.2.4"
end
Loading