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

chore: bump versions #106

Merged
merged 1 commit into from
Dec 4, 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 eppo_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eppo_core"
version = "4.1.1"
version = "4.2.0"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Main change here was removing reqwest::blocking and introducing tokio for async handling. Do you think this helps/hurts any threading stability? Any additional improvements for handling exceptions in tokio?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should make no difference as we're just doing what reqwest::blocking did under the hood

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry, just found that we included breaking changes in 4.1.1, so we need a major bump: #107

edition = "2021"
description = "Eppo SDK core library"
repository = "https://github.com/Eppo-exp/rust-sdk"
Expand Down
2 changes: 1 addition & 1 deletion fastly-edge-assignments/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
[dependencies]
base64-url = "3.0.0"
chrono = "0.4.19"
eppo_core = { version = "=4.1.1", path = "../eppo_core" }
eppo_core = { version = "=4.2.0", path = "../eppo_core" }
fastly = "0.11.0"
serde_json = "1.0.132"
serde = "1.0.192"
Expand Down
4 changes: 2 additions & 2 deletions python-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "eppo_py"
version = "4.1.1"
version = "4.1.2"
edition = "2021"
publish = false

[lib]
crate-type = ["cdylib"]

[dependencies]
eppo_core = { version = "4.1.1", path = "../eppo_core", features = ["pyo3", "vendored"] }
eppo_core = { version = "=4.2.0", path = "../eppo_core", features = ["pyo3", "vendored"] }
log = "0.4.22"
pyo3 = { version = "0.22.0" }
pyo3-log = "0.11.0"
Expand Down
4 changes: 2 additions & 2 deletions 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.3.0"
version = "3.3.1"
edition = "2021"
license = "MIT"
publish = false
Expand All @@ -12,7 +12,7 @@ crate-type = ["cdylib"]

[dependencies]
env_logger = { version = "0.11.3", features = ["unstable-kv"] }
eppo_core = { version = "4.1.1", features = ["vendored"] }
eppo_core = { version = "=4.2.0", features = ["vendored"] }
log = { version = "0.4.21", features = ["kv_serde"] }
magnus = { version = "0.6.4" }
serde = { version = "1.0.203", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions rust-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eppo"
version = "4.0.1"
version = "4.1.1"
edition = "2021"
description = "Eppo SDK for Rust"
homepage = "https://docs.geteppo.com/sdks/server-sdks/rust"
Expand All @@ -11,7 +11,7 @@ categories = ["config"]
rust-version = "1.75.0"

[dependencies]
eppo_core = { version = "=4.1.1", path = "../eppo_core" }
eppo_core = { version = "=4.2.0", path = "../eppo_core" }
log = { version = "0.4.21", features = ["kv", "kv_serde"] }
serde_json = "1.0.116"

Expand Down
Loading