diff --git a/Cargo.lock b/Cargo.lock index 0a73bf71..42ae8e5b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -129,7 +129,7 @@ dependencies = [ [[package]] name = "atrium-api" -version = "0.20.1" +version = "0.21.0" 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..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.1", 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 e94fa41e..2f6461e1 100644 --- a/atrium-api/CHANGELOG.md +++ b/atrium-api/CHANGELOG.md @@ -6,10 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.0](https://github.com/sugyan/atrium/compare/atrium-api-v0.20.1...atrium-api-v0.21.0) - 2024-04-18 + ### Added -- `atrium_api::types::string::Tid` -- `atrium_api::types::string::RecordKey` - - moved from `atrium_api::types::RecordKey` +- Add tid/record-key string format ([#155](https://github.com/sugyan/atrium/pull/155)) + - `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 fc834126..21ce84bd 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.21.0" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-cli/CHANGELOG.md b/atrium-cli/CHANGELOG.md index a0b06fc5..9d7827ed 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 + +### 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 ### 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