Skip to content

Commit 816bf4a

Browse files
chore: bump versions before release (#207)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 095c5f5 commit 816bf4a

File tree

16 files changed

+46
-33
lines changed

16 files changed

+46
-33
lines changed

.changeset/cyan-socks-fold.md

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

.changeset/perfect-pumas-protect.md

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

.changeset/selfish-houses-doubt.md

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

eppo_core/CHANGELOG.md

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

3+
## 8.0.3
4+
5+
### Patch Changes
6+
7+
- [#212](https://github.com/Eppo-exp/eppo-multiplatform/pull/212) [`095c5f5`](https://github.com/Eppo-exp/eppo-multiplatform/commit/095c5f54b48a8d41bae53125507a9939ae5ce9ec) Thanks [@bennettandrews](https://github.com/bennettandrews)! - Fix `AttributeValue` serialization, so `Null` attributes are properly serialized as None instead of unit value.
8+
9+
- [#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.
10+
311
## 8.0.2
412

513
### 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 = "8.0.2"
3+
version = "8.0.3"
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": "8.0.2",
4+
"version": "8.0.3",
55
"dependencies": {},
66
"devDependencies": {},
77
"scripts": {

python-sdk/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# python-sdk
22

3+
## 4.2.5
4+
5+
### Patch Changes
6+
7+
- [#212](https://github.com/Eppo-exp/eppo-multiplatform/pull/212) [`095c5f5`](https://github.com/Eppo-exp/eppo-multiplatform/commit/095c5f54b48a8d41bae53125507a9939ae5ce9ec) Thanks [@bennettandrews](https://github.com/bennettandrews)! - Fix `AttributeValue` serialization, so `Null` attributes are properly serialized as None instead of unit value.
8+
9+
- [#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.
10+
311
## 4.2.4
412

513
### Patch Changes

python-sdk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "eppo_py"
3-
version = "4.2.4"
3+
version = "4.2.5"
44
edition = "2021"
55
publish = false
66

77
[lib]
88
crate-type = ["cdylib"]
99

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

python-sdk/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": "python-sdk",
4-
"version": "4.2.4",
4+
"version": "4.2.5",
55
"dependencies": {},
66
"devDependencies": {},
77
"scripts": {

ruby-sdk/CHANGELOG.md

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

3+
## 3.4.6
4+
5+
### Patch Changes
6+
7+
- [#212](https://github.com/Eppo-exp/eppo-multiplatform/pull/212) [`095c5f5`](https://github.com/Eppo-exp/eppo-multiplatform/commit/095c5f54b48a8d41bae53125507a9939ae5ce9ec) Thanks [@bennettandrews](https://github.com/bennettandrews)! - Fix `AttributeValue` serialization, so `Null` attributes are properly serialized as None instead of unit value.
8+
9+
- [#206](https://github.com/Eppo-exp/eppo-multiplatform/pull/206) [`8c04c92`](https://github.com/Eppo-exp/eppo-multiplatform/commit/8c04c9254dc24660f172614b867c0324d94663bd) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps): bump openssl from 0.10.68 to 0.10.70
10+
11+
- [#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.
12+
313
## 3.4.5
414

515
### Patch Changes

0 commit comments

Comments
 (0)