diff --git a/Cargo.lock b/Cargo.lock index 4549c1b..7b81762 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -99,7 +99,7 @@ checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100" [[package]] name = "api_clients_core" -version = "0.2.1" +version = "0.3.0" dependencies = [ "async-trait", "derive_setters", @@ -319,7 +319,7 @@ dependencies = [ [[package]] name = "dedust_api_client" -version = "0.6.1" +version = "0.7.0" dependencies = [ "anyhow", "api_clients_core", @@ -1801,7 +1801,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stonfi_api_client" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "api_clients_core", @@ -1831,7 +1831,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "swap_coffee_api_client" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "api_clients_core", @@ -2089,7 +2089,7 @@ dependencies = [ [[package]] name = "tonco_api_client" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "api_clients_core", diff --git a/Cargo.toml b/Cargo.toml index b33bf90..13c7289 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ repository = "https://github.com/Sild/api_clients_rs" [workspace.dependencies] # Internal -api_clients_core = { path = "core", version = "0.2" } +api_clients_core = { path = "core", version = "0.3" } # External thiserror = "2.0" diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 11b5357..0b636f0 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/Sild/api_clients_rs/compare/api_clients_core-v0.2.1...api_clients_core-v0.3.0) - 2026-06-25 + +### Other + +- Full stonfi support ([#42](https://github.com/Sild/api_clients_rs/pull/42)) +- Extend stonfi api ([#39](https://github.com/Sild/api_clients_rs/pull/39)) + ### Added - add smooth rate limiting to the core executor builder with a default of 10 RPS; diff --git a/core/Cargo.toml b/core/Cargo.toml index 6608c33..02384e2 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "api_clients_core" -version = "0.2.1" +version = "0.3.0" description = "core API clients features for various services" readme = "README.md" edition.workspace = true diff --git a/dedust_api_client/CHANGELOG.md b/dedust_api_client/CHANGELOG.md index 5847a96..d178f0e 100644 --- a/dedust_api_client/CHANGELOG.md +++ b/dedust_api_client/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0](https://github.com/Sild/api_clients_rs/compare/dedust_api_client-v0.6.1...dedust_api_client-v0.7.0) - 2026-06-25 + +### Other + +- normalize service clients ([#43](https://github.com/Sild/api_clients_rs/pull/43)) +- Full stonfi support ([#42](https://github.com/Sild/api_clients_rs/pull/42)) +- add non-exhaustive pod builders +- Extend stonfi api ([#39](https://github.com/Sild/api_clients_rs/pull/39)) + ## [0.6.1](https://github.com/Sild/api_clients_rs/compare/dedust_api_client-v0.6.0...dedust_api_client-v0.6.1) - 2025-11-05 ### Other diff --git a/dedust_api_client/Cargo.toml b/dedust_api_client/Cargo.toml index b183b11..48adaa0 100644 --- a/dedust_api_client/Cargo.toml +++ b/dedust_api_client/Cargo.toml @@ -3,7 +3,7 @@ edition.workspace = true license.workspace = true repository.workspace = true name = "dedust_api_client" -version = "0.6.1" +version = "0.7.0" description = "API client for Dedust" [dependencies] diff --git a/stonfi_api_client/CHANGELOG.md b/stonfi_api_client/CHANGELOG.md index 4cae61a..d1fb457 100644 --- a/stonfi_api_client/CHANGELOG.md +++ b/stonfi_api_client/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.0](https://github.com/Sild/api_clients_rs/compare/stonfi_api_client-v0.8.0...stonfi_api_client-v0.9.0) - 2026-06-25 + +### Other + +- Full stonfi support ([#42](https://github.com/Sild/api_clients_rs/pull/42)) +- add non-exhaustive pod builders +- Extend stonfi api ([#39](https://github.com/Sild/api_clients_rs/pull/39)) +- fix stonfi and tonco integration checks + ## [0.8.0](https://github.com/Sild/api_clients_rs/compare/stonfi_api_client-v0.7.0...stonfi_api_client-v0.8.0) - 2025-11-25 ### Added diff --git a/stonfi_api_client/Cargo.toml b/stonfi_api_client/Cargo.toml index 804c3a0..e874d2f 100644 --- a/stonfi_api_client/Cargo.toml +++ b/stonfi_api_client/Cargo.toml @@ -3,7 +3,7 @@ edition.workspace = true license.workspace = true repository.workspace = true name = "stonfi_api_client" -version = "0.8.0" +version = "0.9.0" description = "API client for Stonfi" diff --git a/swap_coffee_api_client/CHANGELOG.md b/swap_coffee_api_client/CHANGELOG.md index 338c889..e0d5e0e 100644 --- a/swap_coffee_api_client/CHANGELOG.md +++ b/swap_coffee_api_client/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0](https://github.com/Sild/api_clients_rs/compare/swap_coffee_api_client-v0.1.0...swap_coffee_api_client-v0.2.0) - 2026-06-25 + +### Other + +- normalize service clients ([#43](https://github.com/Sild/api_clients_rs/pull/43)) +- Full stonfi support ([#42](https://github.com/Sild/api_clients_rs/pull/42)) +- add non-exhaustive pod builders +- Extend stonfi api ([#39](https://github.com/Sild/api_clients_rs/pull/39)) + ## [0.0.4](https://github.com/Sild/api_clients_rs/compare/swap_coffee_api_client-v0.0.3...swap_coffee_api_client-v0.0.4) - 2025-11-05 ### Other diff --git a/swap_coffee_api_client/Cargo.toml b/swap_coffee_api_client/Cargo.toml index f764eec..03e6e93 100644 --- a/swap_coffee_api_client/Cargo.toml +++ b/swap_coffee_api_client/Cargo.toml @@ -3,7 +3,7 @@ edition.workspace = true license.workspace = true repository.workspace = true name = "swap_coffee_api_client" -version = "0.1.0" +version = "0.2.0" description = "API client for swap.coffee" [dependencies] diff --git a/tonco_api_client/CHANGELOG.md b/tonco_api_client/CHANGELOG.md index 1a8b542..47b865f 100644 --- a/tonco_api_client/CHANGELOG.md +++ b/tonco_api_client/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0](https://github.com/Sild/api_clients_rs/compare/tonco_api_client-v0.1.0...tonco_api_client-v0.2.0) - 2026-06-25 + +### Other + +- normalize service clients ([#43](https://github.com/Sild/api_clients_rs/pull/43)) +- Full stonfi support ([#42](https://github.com/Sild/api_clients_rs/pull/42)) +- Extend stonfi api ([#39](https://github.com/Sild/api_clients_rs/pull/39)) + ## [0.0.5](https://github.com/Sild/api_clients_rs/compare/tonco_api_client-v0.0.4...tonco_api_client-v0.0.5) - 2025-11-05 ### Other diff --git a/tonco_api_client/Cargo.toml b/tonco_api_client/Cargo.toml index 9469b4a..707b8ca 100644 --- a/tonco_api_client/Cargo.toml +++ b/tonco_api_client/Cargo.toml @@ -3,7 +3,7 @@ edition.workspace = true license.workspace = true repository.workspace = true name = "tonco_api_client" -version = "0.1.0" +version = "0.2.0" description = "API client for TonCo" [dependencies]