diff --git a/Cargo.lock b/Cargo.lock index 2fbea5d..2ba36c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -298,7 +298,7 @@ dependencies = [ [[package]] name = "bullet-rust-sdk" -version = "0.0.17" +version = "0.0.18" dependencies = [ "base64", "bon", @@ -337,7 +337,7 @@ dependencies = [ [[package]] name = "bullet-rust-sdk-wasm" -version = "0.0.17" +version = "0.0.18" dependencies = [ "bon", "bullet-exchange-interface", diff --git a/Cargo.toml b/Cargo.toml index 2399ba0..a53a8ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ bullet-exchange-interface = { version = "0.3", features = ["schema"] } # crate (otherwise a path-only dep is treated as "no version requirement" and # the wasm crate's version stays frozen while rust bumps). release-plz keeps # the version field in lockstep with rust/Cargo.toml on every release PR. -bullet-rust-sdk = { path = "rust", version = "0.0.17" } +bullet-rust-sdk = { path = "rust", version = "0.0.18" } # Optimize WASM binary size without affecting the rust crate [profile.release] lto = true diff --git a/rust/CHANGELOG.md b/rust/CHANGELOG.md index e14d78d..55ebb29 100644 --- a/rust/CHANGELOG.md +++ b/rust/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.18](https://github.com/bulletxyz/bullet-rust-sdk/compare/v0.0.17...v0.0.18) - 2026-05-14 + +### Features + +- *(ws)* add OrderResult variants to TaggedMessage ([#66](https://github.com/bulletxyz/bullet-rust-sdk/pull/66)) + ## [0.0.17](https://github.com/bulletxyz/bullet-rust-sdk/compare/v0.0.16...v0.0.17) - 2026-05-14 ### Features diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 05cc616..a9ea12f 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bullet-rust-sdk" -version = "0.0.17" +version = "0.0.18" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index 774878f..36232aa 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bullet-rust-sdk-wasm" -version = "0.0.17" +version = "0.0.18" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/wasm/package.json b/wasm/package.json index 96f53d9..b29878a 100644 --- a/wasm/package.json +++ b/wasm/package.json @@ -1,6 +1,6 @@ { "name": "@bulletxyz/sdk-wasm", - "version": "0.0.17", + "version": "0.0.18", "description": "WebAssembly bindings for the Bullet trading SDK — works in Node.js, browsers, and Deno", "author": "Bullet.xyz", "license": "MIT",