From 9321c1ba1cdf68dc8391d2f86b767b5674609ddf Mon Sep 17 00:00:00 2001 From: johngrantuk Date: Thu, 13 Nov 2025 10:12:25 +0000 Subject: [PATCH 1/2] feat(Rust): Update alloy-primitives to 1.3.0. --- rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 5d12074..d391768 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/balancer/balancer-maths" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -alloy-primitives = { version = "0.5", features = ["serde"] } +alloy-primitives = { version = "1.3.0", features = ["serde"] } # Serialization - for data structures serde = { version = "1.0", features = ["derive"] } From ef9be08d0a38989299d802eedcb39ad13f3f5a4a Mon Sep 17 00:00:00 2001 From: johngrantuk Date: Thu, 13 Nov 2025 10:14:33 +0000 Subject: [PATCH 2/2] Rust release v0.4.0. --- rust/CHANGELOG.md | 5 +++++ rust/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/rust/CHANGELOG.md b/rust/CHANGELOG.md index b5bbaa1..6500459 100644 --- a/rust/CHANGELOG.md +++ b/rust/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [0.4.0] - 2025-11-13 + +### Changed +- Update alloy-primitives to 1.3.0. + ## [0.3.0] - 2025-10-30 ### Changed diff --git a/rust/Cargo.toml b/rust/Cargo.toml index d391768..58a98b1 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "balancer-maths-rust" -version = "0.3.0" +version = "0.4.0" edition = "2021" description = "Balancer V3 mathematics library in Rust" license = "MIT"