From 360079f0be0ed3e7d43b4dd79db3f6cba5a31d3e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:42:50 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 8 ++++---- Cargo.toml | 6 +++--- atrium-api/CHANGELOG.md | 6 ++++++ atrium-api/Cargo.toml | 2 +- atrium-xrpc/CHANGELOG.md | 5 +++++ atrium-xrpc/Cargo.toml | 2 +- bsky-cli/CHANGELOG.md | 5 +++++ bsky-cli/Cargo.toml | 2 +- bsky-sdk/CHANGELOG.md | 6 ++++++ bsky-sdk/Cargo.toml | 2 +- 10 files changed, 33 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 24c86d7..2cfe04b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -129,7 +129,7 @@ dependencies = [ [[package]] name = "atrium-api" -version = "0.23.0" +version = "0.23.1" dependencies = [ "async-trait", "atrium-xrpc", @@ -150,7 +150,7 @@ dependencies = [ [[package]] name = "atrium-xrpc" -version = "0.11.1" +version = "0.11.2" dependencies = [ "async-trait", "http 1.1.0", @@ -224,7 +224,7 @@ checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" [[package]] name = "bsky-cli" -version = "0.1.16" +version = "0.1.17" dependencies = [ "anyhow", "async-trait", @@ -239,7 +239,7 @@ dependencies = [ [[package]] name = "bsky-sdk" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index c7465d3..478c0ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,10 +22,10 @@ keywords = ["atproto", "bluesky"] [workspace.dependencies] # Intra-workspace dependencies -atrium-api = { version = "0.23.0", path = "atrium-api" } -atrium-xrpc = { version = "0.11.1", path = "atrium-xrpc" } +atrium-api = { version = "0.23.1", path = "atrium-api" } +atrium-xrpc = { version = "0.11.2", path = "atrium-xrpc" } atrium-xrpc-client = { version = "0.5.5", path = "atrium-xrpc-client" } -bsky-sdk = { version = "0.1.2", path = "bsky-sdk" } +bsky-sdk = { version = "0.1.3", path = "bsky-sdk" } # async in traits # Can be removed once MSRV is at least 1.75.0. diff --git a/atrium-api/CHANGELOG.md b/atrium-api/CHANGELOG.md index f3e09e5..551d6ca 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.23.1](https://github.com/sugyan/atrium/compare/atrium-api-v0.23.0...atrium-api-v0.23.1) - 2024-06-26 + +### Added +- Update API, based on the latest lexicon schemas ([#194](https://github.com/sugyan/atrium/pull/194)) +- Add `Clone` and `Debug` ([#193](https://github.com/sugyan/atrium/pull/193)) + ## [0.23.0](https://github.com/sugyan/atrium/compare/atrium-api-v0.22.3...atrium-api-v0.23.0) - 2024-06-20 ### Added diff --git a/atrium-api/Cargo.toml b/atrium-api/Cargo.toml index 8f413c0..c3bbf1d 100644 --- a/atrium-api/Cargo.toml +++ b/atrium-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-api" -version = "0.23.0" +version = "0.23.1" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-xrpc/CHANGELOG.md b/atrium-xrpc/CHANGELOG.md index 632c62e..420be37 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.11.2](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.11.1...atrium-xrpc-v0.11.2) - 2024-06-26 + +### Added +- Add `Clone` and `Debug` ([#193](https://github.com/sugyan/atrium/pull/193)) + ## [0.11.1](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.11.0...atrium-xrpc-v0.11.1) - 2024-06-13 ### Added diff --git a/atrium-xrpc/Cargo.toml b/atrium-xrpc/Cargo.toml index 395ddec..abd11a6 100644 --- a/atrium-xrpc/Cargo.toml +++ b/atrium-xrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-xrpc" -version = "0.11.1" +version = "0.11.2" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/bsky-cli/CHANGELOG.md b/bsky-cli/CHANGELOG.md index 0047962..a130595 100644 --- a/bsky-cli/CHANGELOG.md +++ b/bsky-cli/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.17](https://github.com/sugyan/atrium/compare/bsky-cli-v0.1.16...bsky-cli-v0.1.17) - 2024-06-26 + +### Other +- release + ## [0.1.16](https://github.com/sugyan/atrium/releases/tag/bsky-cli-v0.1.16) - 2024-06-21 ### Added diff --git a/bsky-cli/Cargo.toml b/bsky-cli/Cargo.toml index 6d0c1b2..5cc057c 100644 --- a/bsky-cli/Cargo.toml +++ b/bsky-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bsky-cli" -version = "0.1.16" +version = "0.1.17" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/bsky-sdk/CHANGELOG.md b/bsky-sdk/CHANGELOG.md index d4d8226..87541aa 100644 --- a/bsky-sdk/CHANGELOG.md +++ b/bsky-sdk/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/sugyan/atrium/compare/bsky-sdk-v0.1.2...bsky-sdk-v0.1.3) - 2024-06-26 + +### Added +- Update API, based on the latest lexicon schemas ([#194](https://github.com/sugyan/atrium/pull/194)) +- Add `Clone` and `Debug` ([#193](https://github.com/sugyan/atrium/pull/193)) + ## [0.1.2](https://github.com/sugyan/atrium/compare/bsky-sdk-v0.1.1...bsky-sdk-v0.1.2) - 2024-06-21 ### Added diff --git a/bsky-sdk/Cargo.toml b/bsky-sdk/Cargo.toml index f335f95..134ce7e 100644 --- a/bsky-sdk/Cargo.toml +++ b/bsky-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bsky-sdk" -version = "0.1.2" +version = "0.1.3" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true