diff --git a/Cargo.lock b/Cargo.lock index ae39f0c2..9ac92220 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -395,7 +395,7 @@ dependencies = [ [[package]] name = "atrium-api" -version = "0.18.0" +version = "0.18.1" dependencies = [ "async-trait", "atrium-xrpc 0.10.0", @@ -419,7 +419,7 @@ name = "atrium-cli" version = "0.1.3" dependencies = [ "async-trait", - "atrium-api 0.18.0", + "atrium-api 0.18.1", "atrium-xrpc-client", "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index e6168afe..a11b830e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ keywords = ["atproto", "bluesky"] [workspace.dependencies] # Intra-workspace dependencies -atrium-api = { version = "0.18.0", path = "atrium-api" } +atrium-api = { version = "0.18.1", path = "atrium-api" } atrium-xrpc = { version = "0.10.0", path = "atrium-xrpc" } atrium-xrpc-client = { version = "0.4.0", path = "atrium-xrpc-client" } atrium-xrpc-server = { version = "0.1.0", path = "atrium-xrpc-server" } diff --git a/atrium-api/CHANGELOG.md b/atrium-api/CHANGELOG.md index ff095e75..de590eda 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.1](https://github.com/sugyan/atrium/compare/atrium-api-v0.18.0...atrium-api-v0.18.1) - 2024-03-03 + +### Other +- Generate structs corresponding to collections + ### Added - `atrium_api::types::Collection` trait, which binds together a record type and its NSID. - Collection structs for the current record types: diff --git a/atrium-api/Cargo.toml b/atrium-api/Cargo.toml index 200e2868..022162a5 100644 --- a/atrium-api/Cargo.toml +++ b/atrium-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-api" -version = "0.18.0" +version = "0.18.1" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true