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 major version for core #107

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.2.0"
version = "5.0.0"
Copy link
Member

Choose a reason for hiding this comment

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

Could you please be specific with what the breaking change is? Is it a breaking change from the perspective of the SDKs (users) or the SDKs themselves?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

ConfigurationFetcher::fetch_configuration became async.

That's a breaking changes from the eppo_core's API perspective. It's not a breaking change for users, so we're not bumping SDKs' versions

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.2.0", path = "../eppo_core" }
eppo_core = { version = "=5.0.0", path = "../eppo_core" }
fastly = "0.11.0"
serde_json = "1.0.132"
serde = "1.0.192"
Expand Down
2 changes: 1 addition & 1 deletion python-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
crate-type = ["cdylib"]

[dependencies]
eppo_core = { version = "=4.2.0", path = "../eppo_core", features = ["pyo3", "vendored"] }
eppo_core = { version = "=5.0.0", path = "../eppo_core", features = ["pyo3", "vendored"] }
log = "0.4.22"
pyo3 = { version = "0.22.0" }
pyo3-log = "0.11.0"
Expand Down
2 changes: 1 addition & 1 deletion ruby-sdk/ext/eppo_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ crate-type = ["cdylib"]

[dependencies]
env_logger = { version = "0.11.3", features = ["unstable-kv"] }
eppo_core = { version = "=4.2.0", features = ["vendored"] }
eppo_core = { version = "=5.0.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
2 changes: 1 addition & 1 deletion rust-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ categories = ["config"]
rust-version = "1.75.0"

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

Expand Down
Loading