diff --git a/Cargo.lock b/Cargo.lock index f69395b3..6da8b1ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -129,7 +129,7 @@ dependencies = [ [[package]] name = "atrium-api" -version = "0.21.0" +version = "0.21.1" dependencies = [ "async-trait", "atrium-xrpc", @@ -150,7 +150,7 @@ dependencies = [ [[package]] name = "atrium-cli" -version = "0.1.11" +version = "0.1.12" dependencies = [ "anyhow", "async-trait", @@ -166,7 +166,7 @@ dependencies = [ [[package]] name = "atrium-xrpc" -version = "0.10.5" +version = "0.10.6" dependencies = [ "async-trait", "http 1.1.0", diff --git a/Cargo.toml b/Cargo.toml index 18b9c0d9..c8826160 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,8 +21,8 @@ keywords = ["atproto", "bluesky"] [workspace.dependencies] # Intra-workspace dependencies -atrium-api = { version = "0.21.0", path = "atrium-api" } -atrium-xrpc = { version = "0.10.5", path = "atrium-xrpc" } +atrium-api = { version = "0.21.1", path = "atrium-api" } +atrium-xrpc = { version = "0.10.6", path = "atrium-xrpc" } atrium-xrpc-client = { version = "0.5.2", path = "atrium-xrpc-client" } # async in traits diff --git a/atrium-api/CHANGELOG.md b/atrium-api/CHANGELOG.md index 2f6461e1..bb8260d8 100644 --- a/atrium-api/CHANGELOG.md +++ b/atrium-api/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.1](https://github.com/sugyan/atrium/compare/atrium-api-v0.21.0...atrium-api-v0.21.1) - 2024-05-17 + +### Added +- Add headers() to `XrpcClient` ([#170](https://github.com/sugyan/atrium/pull/170)) +- Update API, based on the latest lexicon schemas ([#165](https://github.com/sugyan/atrium/pull/165)) + ## [0.21.0](https://github.com/sugyan/atrium/compare/atrium-api-v0.20.1...atrium-api-v0.21.0) - 2024-04-18 ### Added diff --git a/atrium-api/Cargo.toml b/atrium-api/Cargo.toml index 21ce84bd..8bab4c98 100644 --- a/atrium-api/Cargo.toml +++ b/atrium-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-api" -version = "0.21.0" +version = "0.21.1" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-cli/CHANGELOG.md b/atrium-cli/CHANGELOG.md index 9d7827ed..eb88dd12 100644 --- a/atrium-cli/CHANGELOG.md +++ b/atrium-cli/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.12](https://github.com/sugyan/atrium/compare/atrium-cli-v0.1.11...atrium-cli-v0.1.12) - 2024-05-17 + +### Other +- update Cargo.lock dependencies + ## [0.1.11](https://github.com/sugyan/atrium/compare/atrium-cli-v0.1.10...atrium-cli-v0.1.11) - 2024-04-18 ### Added diff --git a/atrium-cli/Cargo.toml b/atrium-cli/Cargo.toml index fd1181c9..79d5eb08 100644 --- a/atrium-cli/Cargo.toml +++ b/atrium-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-cli" -version = "0.1.11" +version = "0.1.12" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-xrpc/CHANGELOG.md b/atrium-xrpc/CHANGELOG.md index e4d95f38..c92fecd0 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.6](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.10.5...atrium-xrpc-v0.10.6) - 2024-05-17 + +### Added +- Add headers() to `XrpcClient` ([#170](https://github.com/sugyan/atrium/pull/170)) + ## [0.10.5](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.10.4...atrium-xrpc-v0.10.5) - 2024-04-22 ### Added diff --git a/atrium-xrpc/Cargo.toml b/atrium-xrpc/Cargo.toml index 99901f7e..c078349b 100644 --- a/atrium-xrpc/Cargo.toml +++ b/atrium-xrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-xrpc" -version = "0.10.5" +version = "0.10.6" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true