diff --git a/Cargo.lock b/Cargo.lock index a82e9a89..7ea8e46e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -190,7 +190,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "atrium-api" -version = "0.24.10" +version = "0.25.0" dependencies = [ "atrium-common", "atrium-xrpc", @@ -287,7 +287,7 @@ dependencies = [ [[package]] name = "atrium-xrpc" -version = "0.12.0" +version = "0.12.1" dependencies = [ "bumpalo", "http 1.1.0", @@ -302,7 +302,7 @@ dependencies = [ [[package]] name = "atrium-xrpc-client" -version = "0.5.10" +version = "0.5.11" dependencies = [ "atrium-xrpc", "bumpalo", @@ -418,7 +418,7 @@ dependencies = [ [[package]] name = "bsky-cli" -version = "0.1.27" +version = "0.1.28" dependencies = [ "anyhow", "bsky-sdk", @@ -432,7 +432,7 @@ dependencies = [ [[package]] name = "bsky-sdk" -version = "0.1.15" +version = "0.1.16" dependencies = [ "anyhow", "atrium-api", diff --git a/Cargo.toml b/Cargo.toml index 6be41b7f..6c8ff954 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,12 +24,12 @@ keywords = ["atproto", "bluesky"] [workspace.dependencies] # Intra-workspace dependencies -atrium-api = { version = "0.24.10", path = "atrium-api", default-features = false } +atrium-api = { version = "0.25.0", path = "atrium-api", default-features = false } atrium-common = { version = "0.1.0", path = "atrium-common" } atrium-identity = { version = "0.1.0", path = "atrium-oauth/identity" } -atrium-xrpc = { version = "0.12.0", path = "atrium-xrpc" } -atrium-xrpc-client = { version = "0.5.10", path = "atrium-xrpc-client" } -bsky-sdk = { version = "0.1.15", path = "bsky-sdk" } +atrium-xrpc = { version = "0.12.1", path = "atrium-xrpc" } +atrium-xrpc-client = { version = "0.5.11", path = "atrium-xrpc-client" } +bsky-sdk = { version = "0.1.16", path = "bsky-sdk" } # DAG-CBOR codec ipld-core = { version = "0.4.1", default-features = false, features = ["std"] } diff --git a/atrium-api/CHANGELOG.md b/atrium-api/CHANGELOG.md index fada468c..54acda52 100644 --- a/atrium-api/CHANGELOG.md +++ b/atrium-api/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.25.0](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.10...atrium-api-v0.25.0) - 2025-02-17 + +### Added + +- Add `Tid::now` and `Tid::from_datetime` constructors (#277) + +### Changed + +- Agent rework (#282) + - Add `SessionManager` trait in preparation for OAuthSession addition. + - Add `Agent` struct created from `SessionManager`. + - Move `AtpAgent` as a wrapper for Agent created from `CredentialSession`. + - `bsky-sdk` was also modified with the above changes. + + ## [0.24.10](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.9...atrium-api-v0.24.10) - 2025-01-21 ### Other diff --git a/atrium-api/Cargo.toml b/atrium-api/Cargo.toml index e4107413..fde88577 100644 --- a/atrium-api/Cargo.toml +++ b/atrium-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-api" -version = "0.24.10" +version = "0.25.0" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-xrpc-client/CHANGELOG.md b/atrium-xrpc-client/CHANGELOG.md index 11a1ed79..958cd7aa 100644 --- a/atrium-xrpc-client/CHANGELOG.md +++ b/atrium-xrpc-client/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.11](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.5.10...atrium-xrpc-client-v0.5.11) - 2025-02-17 + +### Other + +- update Cargo.toml dependencies + ## [0.5.10](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.5.9...atrium-xrpc-client-v0.5.10) - 2024-11-19 ### Other diff --git a/atrium-xrpc-client/Cargo.toml b/atrium-xrpc-client/Cargo.toml index 7affdfe4..85c04810 100644 --- a/atrium-xrpc-client/Cargo.toml +++ b/atrium-xrpc-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-xrpc-client" -version = "0.5.10" +version = "0.5.11" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-xrpc/CHANGELOG.md b/atrium-xrpc/CHANGELOG.md index 032cac35..54cb07c9 100644 --- a/atrium-xrpc/CHANGELOG.md +++ b/atrium-xrpc/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.1](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.12.0...atrium-xrpc-v0.12.1) - 2025-02-17 + +### Added + +- Agent rework (#282) + ## [0.12.0](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.11.6...atrium-xrpc-v0.12.0) - 2024-11-19 ### Added diff --git a/atrium-xrpc/Cargo.toml b/atrium-xrpc/Cargo.toml index 7f069244..678ece82 100644 --- a/atrium-xrpc/Cargo.toml +++ b/atrium-xrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-xrpc" -version = "0.12.0" +version = "0.12.1" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/bsky-cli/CHANGELOG.md b/bsky-cli/CHANGELOG.md index 680f1c42..0e3e425c 100644 --- a/bsky-cli/CHANGELOG.md +++ b/bsky-cli/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.28](https://github.com/sugyan/atrium/compare/bsky-cli-v0.1.27...bsky-cli-v0.1.28) - 2025-02-17 + +### Other + +- update Cargo.toml dependencies + ## [0.1.27](https://github.com/sugyan/atrium/compare/bsky-cli-v0.1.26...bsky-cli-v0.1.27) - 2025-01-21 ### Other diff --git a/bsky-cli/Cargo.toml b/bsky-cli/Cargo.toml index c3795195..09e46cdd 100644 --- a/bsky-cli/Cargo.toml +++ b/bsky-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bsky-cli" -version = "0.1.27" +version = "0.1.28" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/bsky-sdk/CHANGELOG.md b/bsky-sdk/CHANGELOG.md index c583212e..d807cba4 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.16](https://github.com/sugyan/atrium/compare/bsky-sdk-v0.1.15...bsky-sdk-v0.1.16) - 2025-02-17 + +### Added + +- Agent rework (#282) + ## [0.1.15](https://github.com/sugyan/atrium/compare/bsky-sdk-v0.1.14...bsky-sdk-v0.1.15) - 2025-01-21 ### Other diff --git a/bsky-sdk/Cargo.toml b/bsky-sdk/Cargo.toml index f85fbda8..469794aa 100644 --- a/bsky-sdk/Cargo.toml +++ b/bsky-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bsky-sdk" -version = "0.1.15" +version = "0.1.16" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true