From db89dee06e1a6d408b61a2829c77e897352e2663 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 13:53:48 +0000 Subject: [PATCH 1/2] chore: release Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- atrium-api/CHANGELOG.md | 5 +++++ atrium-api/Cargo.toml | 2 +- atrium-cli/CHANGELOG.md | 5 +++++ atrium-cli/Cargo.toml | 2 +- 6 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0a73bf71..97d66ef8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -129,7 +129,7 @@ dependencies = [ [[package]] name = "atrium-api" -version = "0.20.1" +version = "0.20.2" dependencies = [ "async-trait", "atrium-xrpc", @@ -150,7 +150,7 @@ dependencies = [ [[package]] name = "atrium-cli" -version = "0.1.10" +version = "0.1.11" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 381c276f..b9a83f96 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ keywords = ["atproto", "bluesky"] [workspace.dependencies] # Intra-workspace dependencies -atrium-api = { version = "0.20.1", path = "atrium-api" } +atrium-api = { version = "0.20.2", path = "atrium-api" } atrium-xrpc = { version = "0.10.4", path = "atrium-xrpc" } atrium-xrpc-client = { version = "0.5.2", path = "atrium-xrpc-client" } diff --git a/atrium-api/CHANGELOG.md b/atrium-api/CHANGELOG.md index e94fa41e..55b40f4c 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.20.2](https://github.com/sugyan/atrium/compare/atrium-api-v0.20.1...atrium-api-v0.20.2) - 2024-04-18 + +### Added +- Add tid/record-key string format ([#155](https://github.com/sugyan/atrium/pull/155)) + ### Added - `atrium_api::types::string::Tid` - `atrium_api::types::string::RecordKey` diff --git a/atrium-api/Cargo.toml b/atrium-api/Cargo.toml index fc834126..df6e1653 100644 --- a/atrium-api/Cargo.toml +++ b/atrium-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-api" -version = "0.20.1" +version = "0.20.2" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-cli/CHANGELOG.md b/atrium-cli/CHANGELOG.md index a0b06fc5..3c65518b 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.11](https://github.com/sugyan/atrium/compare/atrium-cli-v0.1.10...atrium-cli-v0.1.11) - 2024-04-18 + +### Other +- Add limit option ([#159](https://github.com/sugyan/atrium/pull/159)) + ## [0.1.10](https://github.com/sugyan/atrium/compare/atrium-cli-v0.1.9...atrium-cli-v0.1.10) - 2024-04-17 ### Other diff --git a/atrium-cli/Cargo.toml b/atrium-cli/Cargo.toml index 9d9e3a47..fd1181c9 100644 --- a/atrium-cli/Cargo.toml +++ b/atrium-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-cli" -version = "0.1.10" +version = "0.1.11" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true From e8f233031d66cf5cbd09dea1331e98763ca2bd46 Mon Sep 17 00:00:00 2001 From: sugyan Date: Thu, 18 Apr 2024 22:57:37 +0900 Subject: [PATCH 2/2] Force version bump --- Cargo.lock | 2 +- Cargo.toml | 2 +- atrium-api/CHANGELOG.md | 10 ++++------ atrium-api/Cargo.toml | 2 +- atrium-cli/CHANGELOG.md | 2 +- 5 files changed, 8 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 97d66ef8..42ae8e5b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -129,7 +129,7 @@ dependencies = [ [[package]] name = "atrium-api" -version = "0.20.2" +version = "0.21.0" dependencies = [ "async-trait", "atrium-xrpc", diff --git a/Cargo.toml b/Cargo.toml index b9a83f96..361b41f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ keywords = ["atproto", "bluesky"] [workspace.dependencies] # Intra-workspace dependencies -atrium-api = { version = "0.20.2", path = "atrium-api" } +atrium-api = { version = "0.21.0", path = "atrium-api" } atrium-xrpc = { version = "0.10.4", path = "atrium-xrpc" } atrium-xrpc-client = { version = "0.5.2", path = "atrium-xrpc-client" } diff --git a/atrium-api/CHANGELOG.md b/atrium-api/CHANGELOG.md index 55b40f4c..2f6461e1 100644 --- a/atrium-api/CHANGELOG.md +++ b/atrium-api/CHANGELOG.md @@ -6,15 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.20.2](https://github.com/sugyan/atrium/compare/atrium-api-v0.20.1...atrium-api-v0.20.2) - 2024-04-18 +## [0.21.0](https://github.com/sugyan/atrium/compare/atrium-api-v0.20.1...atrium-api-v0.21.0) - 2024-04-18 ### Added - Add tid/record-key string format ([#155](https://github.com/sugyan/atrium/pull/155)) - -### Added -- `atrium_api::types::string::Tid` -- `atrium_api::types::string::RecordKey` - - moved from `atrium_api::types::RecordKey` + - `atrium_api::types::string::Tid` + - `atrium_api::types::string::RecordKey` + - moved from `atrium_api::types::RecordKey` ### Removed - `atrium_api::types::RecordKey` diff --git a/atrium-api/Cargo.toml b/atrium-api/Cargo.toml index df6e1653..21ce84bd 100644 --- a/atrium-api/Cargo.toml +++ b/atrium-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-api" -version = "0.20.2" +version = "0.21.0" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-cli/CHANGELOG.md b/atrium-cli/CHANGELOG.md index 3c65518b..9d7827ed 100644 --- a/atrium-cli/CHANGELOG.md +++ b/atrium-cli/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.11](https://github.com/sugyan/atrium/compare/atrium-cli-v0.1.10...atrium-cli-v0.1.11) - 2024-04-18 -### Other +### Added - Add limit option ([#159](https://github.com/sugyan/atrium/pull/159)) ## [0.1.10](https://github.com/sugyan/atrium/compare/atrium-cli-v0.1.9...atrium-cli-v0.1.10) - 2024-04-17