diff --git a/Cargo.lock b/Cargo.lock index f6b948b8..bd0257bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -141,7 +141,7 @@ dependencies = [ [[package]] name = "atrium-api" -version = "0.18.5" +version = "0.18.6" dependencies = [ "async-trait", "atrium-xrpc", @@ -178,7 +178,7 @@ dependencies = [ [[package]] name = "atrium-xrpc" -version = "0.10.2" +version = "0.10.3" dependencies = [ "async-trait", "http", diff --git a/Cargo.toml b/Cargo.toml index fc2749fe..2e8384e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,8 +21,8 @@ keywords = ["atproto", "bluesky"] [workspace.dependencies] # Intra-workspace dependencies -atrium-api = { version = "0.18.5", path = "atrium-api" } -atrium-xrpc = { version = "0.10.2", path = "atrium-xrpc" } +atrium-api = { version = "0.18.6", path = "atrium-api" } +atrium-xrpc = { version = "0.10.3", path = "atrium-xrpc" } atrium-xrpc-client = { version = "0.5.0", path = "atrium-xrpc-client" } # async in traits diff --git a/atrium-api/CHANGELOG.md b/atrium-api/CHANGELOG.md index c5e12d72..da9da149 100644 --- a/atrium-api/CHANGELOG.md +++ b/atrium-api/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.6](https://github.com/sugyan/atrium/compare/atrium-api-v0.18.5...atrium-api-v0.18.6) - 2024-03-16 + +### Added +- implement `std::fmt::Display` for all Error types ([#140](https://github.com/sugyan/atrium/pull/140)) + ## [0.18.5](https://github.com/sugyan/atrium/compare/atrium-api-v0.18.4...atrium-api-v0.18.5) - 2024-03-14 ### Fixed diff --git a/atrium-api/Cargo.toml b/atrium-api/Cargo.toml index bda54f80..da7a17b3 100644 --- a/atrium-api/Cargo.toml +++ b/atrium-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-api" -version = "0.18.5" +version = "0.18.6" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-xrpc/CHANGELOG.md b/atrium-xrpc/CHANGELOG.md index 9f422731..b836e5f7 100644 --- a/atrium-xrpc/CHANGELOG.md +++ b/atrium-xrpc/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.3](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.10.2...atrium-xrpc-v0.10.3) - 2024-03-16 + +### Added +- implement `std::fmt::Display` for all Error types ([#140](https://github.com/sugyan/atrium/pull/140)) + ## [0.10.2](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.10.1...atrium-xrpc-v0.10.2) - 2024-03-10 ### Other diff --git a/atrium-xrpc/Cargo.toml b/atrium-xrpc/Cargo.toml index 8daa7b41..710f4a29 100644 --- a/atrium-xrpc/Cargo.toml +++ b/atrium-xrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-xrpc" -version = "0.10.2" +version = "0.10.3" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true