Skip to content

Commit fb83930

Browse files
chore: bump versions before release (#269)
1 parent 2ec98c6 commit fb83930

File tree

13 files changed

+42
-20
lines changed

13 files changed

+42
-20
lines changed

.changeset/twelve-cherries-teach.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

dart-sdk/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ crate-type = ["cdylib"]
1313

1414
[dependencies]
1515
flutter_rust_bridge = "=2.8.0"
16-
eppo_core = "=9.1.1"
16+
eppo_core = "=9.2.0"
1717
chrono = { version = "0.4.39", default-features = false, features = ["std"] }
1818
serde_json = "1.0.138"
1919
tokio = { version = "1.43.0", default-features = false, features = ["rt"] }

elixir-sdk/native/sdk_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ crate-type = ["cdylib"]
1010

1111
[dependencies]
1212
rustler = { version = "0.36.1", features = ["serde"] }
13-
eppo_core = { version = "=9.1.1", features = ["rustler"] }
13+
eppo_core = { version = "=9.2.0", features = ["rustler"] }
1414
serde_json = "1.0.138"
1515
tokio = { version = "1.44.1", default-features = false, features = ["time"] }
1616
log = "0.4.21"

eppo_core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# eppo_core
22

3+
## 9.2.0
4+
5+
### Minor Changes
6+
7+
- [#268](https://github.com/Eppo-exp/eppo-multiplatform/pull/268) [`2ec98c6`](https://github.com/Eppo-exp/eppo-multiplatform/commit/2ec98c6f006d9e86c186fc99a903188d9837d653) Thanks [@rasendubi](https://github.com/rasendubi)! - Fix casing of `evaluationDetails`.
8+
9+
In Ruby SDK v3.4.0, the name of `evaluationDetails` was inadvertently changed to `evaluation_details`. This was a bug that caused backward incompatibility in a minor release.
10+
11+
This release fixes the casing back to `evaluationDetails`.
12+
313
## 9.1.1
414

515
### Patch Changes

eppo_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "eppo_core"
3-
version = "9.1.1"
3+
version = "9.2.0"
44
edition = "2021"
55
description = "Eppo SDK core library"
66
repository = "https://github.com/Eppo-exp/rust-sdk"

eppo_core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "eppo_core",
4-
"version": "9.1.1",
4+
"version": "9.2.0",
55
"dependencies": {},
66
"devDependencies": {},
77
"scripts": {

python-sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88
crate-type = ["cdylib"]
99

1010
[dependencies]
11-
eppo_core = { version = "=9.1.1", path = "../eppo_core", features = ["pyo3"] }
11+
eppo_core = { version = "=9.2.0", path = "../eppo_core", features = ["pyo3"] }
1212
log = "0.4.22"
1313
pyo3 = "0.23.0"
1414
pyo3-log = "0.12.0"

ruby-sdk/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
# ruby-sdk
22

3+
## 3.7.0
4+
5+
### Minor Changes
6+
7+
- [#268](https://github.com/Eppo-exp/eppo-multiplatform/pull/268) [`2ec98c6`](https://github.com/Eppo-exp/eppo-multiplatform/commit/2ec98c6f006d9e86c186fc99a903188d9837d653) Thanks [@rasendubi](https://github.com/rasendubi)! - Fix casing of `evaluationDetails`.
8+
9+
In Ruby SDK v3.4.0, the name of `evaluationDetails` was inadvertently changed to `evaluation_details`. This was a bug that caused backward incompatibility in a minor release.
10+
11+
This release fixes the casing back to `evaluationDetails`.
12+
313
## 3.6.0
414

515
### Minor Changes
616

717
- [#247](https://github.com/Eppo-exp/eppo-multiplatform/pull/247) [`2e3bf09`](https://github.com/Eppo-exp/eppo-multiplatform/commit/2e3bf093d23a2b63f55f3e5336662489ed689a09) Thanks [@rasendubi](https://github.com/rasendubi)! - Add `wait_for_initialization()` method.
818

919
### Known Issues
20+
1021
- Starting with v3.4.0, in result of evaluation details methods, the name of `evaluationDetails` key is spelled as `evaluation_details`. This is fixed in 3.7.0.
1122

1223
## 3.5.1
@@ -20,6 +31,7 @@
2031
- [#223](https://github.com/Eppo-exp/eppo-multiplatform/pull/223) [`9504e92`](https://github.com/Eppo-exp/eppo-multiplatform/commit/9504e928c37f82147e65fe25aab558cad3bbac2a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps): bump rb_sys from 0.9.110 to 0.9.111
2132

2233
### Known Issues
34+
2335
- Starting with v3.4.0, in result of evaluation details methods, the name of `evaluationDetails` key is spelled as `evaluation_details`. This is fixed in 3.7.0.
2436

2537
## 3.5.0
@@ -29,6 +41,7 @@
2941
- [#197](https://github.com/Eppo-exp/eppo-multiplatform/pull/197) [`a4da91f`](https://github.com/Eppo-exp/eppo-multiplatform/commit/a4da91f1a962708924063f3f076d3064441c2f76) Thanks [@rasendubi](https://github.com/rasendubi)! - Change TLS implementation from openssl to rustls.
3042

3143
### Known Issues
44+
3245
- Starting with v3.4.0, in result of evaluation details methods, the name of `evaluationDetails` key is spelled as `evaluation_details`. This is fixed in 3.7.0.
3346

3447
## 3.4.6
@@ -42,6 +55,7 @@
4255
- [#213](https://github.com/Eppo-exp/eppo-multiplatform/pull/213) [`9ea7865`](https://github.com/Eppo-exp/eppo-multiplatform/commit/9ea78657dbbfe8fb733dd67fb71357872db9f8b2) Thanks [@rasendubi](https://github.com/rasendubi)! - Bump Minimum Supported Rust Version (MSRV) to 1.80.0.
4356

4457
### Known Issues
58+
4559
- Starting with v3.4.0, in result of evaluation details methods, the name of `evaluationDetails` key is spelled as `evaluation_details`. This is fixed in 3.7.0.
4660

4761
## 3.4.5
@@ -51,6 +65,7 @@
5165
- [#201](https://github.com/Eppo-exp/eppo-multiplatform/pull/201) [`1d310c7`](https://github.com/Eppo-exp/eppo-multiplatform/commit/1d310c7019dde1aa5a965e064eab15187b064d96) Thanks [@felipecsl](https://github.com/felipecsl)! - [Unstable] Event Ingestion: Fix JSON serialization of Event timestamp field
5266

5367
### Known Issues
68+
5469
- Starting with v3.4.0, in result of evaluation details methods, the name of `evaluationDetails` key is spelled as `evaluation_details`. This is fixed in 3.7.0.
5570

5671
## 3.4.4
@@ -60,6 +75,7 @@
6075
- [#198](https://github.com/Eppo-exp/eppo-multiplatform/pull/198) [`9c6990e`](https://github.com/Eppo-exp/eppo-multiplatform/commit/9c6990ec77dc3ffe8f1b6384f92fcc24db94916f) Thanks [@felipecsl](https://github.com/felipecsl)! - [unstable] Event Ingestion: Fix JSON serialization of Event type field
6176

6277
### Known Issues
78+
6379
- Starting with v3.4.0, in result of evaluation details methods, the name of `evaluationDetails` key is spelled as `evaluation_details`. This is fixed in 3.7.0.
6480

6581
## 3.4.3
@@ -75,6 +91,7 @@
7591
This changes API of the core but should be invisible for SDKs. The only noticeable difference is that client should be more responsive to graceful shutdown requests.
7692

7793
### Known Issues
94+
7895
- Starting with v3.4.0, in result of evaluation details methods, the name of `evaluationDetails` key is spelled as `evaluation_details`. This is fixed in 3.7.0.
7996

8097
## 3.4.2
@@ -85,6 +102,7 @@
85102
86103

87104
### Known Issues
105+
88106
- Starting with v3.4.0, in result of evaluation details methods, the name of `evaluationDetails` key is spelled as `evaluation_details`. This is fixed in 3.7.0.
89107

90108
## 3.4.1
@@ -95,6 +113,7 @@
95113
96114

97115
### Known Issues
116+
98117
- Starting with v3.4.0, in result of evaluation details methods, the name of `evaluationDetails` key is spelled as `evaluation_details`. This is fixed in 3.7.0.
99118

100119
## 3.4.0
@@ -144,4 +163,5 @@
144163
145164

146165
### Known Issues
166+
147167
- Starting with v3.4.0, in result of evaluation details methods, the name of `evaluationDetails` key is spelled as `evaluation_details`. This is fixed in 3.7.0.

ruby-sdk/Cargo.lock

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ruby-sdk/ext/eppo_client/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.6.0"
4+
version = "3.7.0"
55
edition = "2021"
66
license = "MIT"
77
publish = false
@@ -12,7 +12,7 @@ crate-type = ["cdylib"]
1212

1313
[dependencies]
1414
env_logger = { version = "0.11.3", features = ["unstable-kv"] }
15-
eppo_core = { version = "=9.1.1", features = ["magnus", "event_ingestion"] }
15+
eppo_core = { version = "=9.2.0", features = ["magnus", "event_ingestion"] }
1616
log = { version = "0.4.21", features = ["kv_serde"] }
1717
magnus = { version = "0.7.1" }
1818
serde = { version = "1.0.203", features = ["derive"] }

0 commit comments

Comments
 (0)