From aa6cfa0c07e866360cce116af571ba4efc42337b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 13:31:04 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 12 ++++++------ Cargo.toml | 8 ++++---- atrium-api/CHANGELOG.md | 7 +++++++ atrium-api/Cargo.toml | 2 +- atrium-crypto/CHANGELOG.md | 6 ++++++ atrium-crypto/Cargo.toml | 2 +- atrium-xrpc-client/CHANGELOG.md | 6 ++++++ atrium-xrpc-client/Cargo.toml | 2 +- atrium-xrpc/CHANGELOG.md | 6 ++++++ atrium-xrpc/Cargo.toml | 2 +- bsky-cli/CHANGELOG.md | 6 ++++++ bsky-cli/Cargo.toml | 2 +- bsky-sdk/CHANGELOG.md | 7 +++++++ bsky-sdk/Cargo.toml | 2 +- 14 files changed, 54 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb95f17e..249e4db1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,7 +178,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "atrium-api" -version = "0.24.6" +version = "0.24.7" dependencies = [ "atrium-xrpc", "atrium-xrpc-client", @@ -201,7 +201,7 @@ dependencies = [ [[package]] name = "atrium-crypto" -version = "0.1.1" +version = "0.1.2" dependencies = [ "ecdsa", "hex", @@ -264,7 +264,7 @@ dependencies = [ [[package]] name = "atrium-xrpc" -version = "0.11.5" +version = "0.11.6" dependencies = [ "bumpalo", "http 1.1.0", @@ -279,7 +279,7 @@ dependencies = [ [[package]] name = "atrium-xrpc-client" -version = "0.5.8" +version = "0.5.9" dependencies = [ "atrium-xrpc", "bumpalo", @@ -360,7 +360,7 @@ dependencies = [ [[package]] name = "bsky-cli" -version = "0.1.24" +version = "0.1.25" dependencies = [ "anyhow", "bsky-sdk", @@ -374,7 +374,7 @@ dependencies = [ [[package]] name = "bsky-sdk" -version = "0.1.11" +version = "0.1.12" dependencies = [ "anyhow", "atrium-api", diff --git a/Cargo.toml b/Cargo.toml index a33c51ac..96dd91f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,11 +25,11 @@ keywords = ["atproto", "bluesky"] [workspace.dependencies] # Intra-workspace dependencies -atrium-api = { version = "0.24.6", path = "atrium-api", default-features = false } +atrium-api = { version = "0.24.7", path = "atrium-api", default-features = false } atrium-identity = { version = "0.1.0", path = "atrium-oauth/identity" } -atrium-xrpc = { version = "0.11.5", path = "atrium-xrpc" } -atrium-xrpc-client = { version = "0.5.8", path = "atrium-xrpc-client" } -bsky-sdk = { version = "0.1.11", path = "bsky-sdk" } +atrium-xrpc = { version = "0.11.6", path = "atrium-xrpc" } +atrium-xrpc-client = { version = "0.5.9", path = "atrium-xrpc-client" } +bsky-sdk = { version = "0.1.12", 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 47a83cc6..03a66807 100644 --- a/atrium-api/CHANGELOG.md +++ b/atrium-api/CHANGELOG.md @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.24.7](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.6...atrium-api-v0.24.7) - 2024-10-28 + +### Added + +- Update API, based on the latest lexicon schemas ([#241](https://github.com/sugyan/atrium/pull/241)) +- OAuth ([#219](https://github.com/sugyan/atrium/pull/219)) ## [0.24.6](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.5...atrium-api-v0.24.6) - 2024-09-20 ### Removed diff --git a/atrium-api/Cargo.toml b/atrium-api/Cargo.toml index 3abb9ecd..94060175 100644 --- a/atrium-api/Cargo.toml +++ b/atrium-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-api" -version = "0.24.6" +version = "0.24.7" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-crypto/CHANGELOG.md b/atrium-crypto/CHANGELOG.md index 31ae8ca4..a5e27d18 100644 --- a/atrium-crypto/CHANGELOG.md +++ b/atrium-crypto/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.1.2](https://github.com/sugyan/atrium/compare/atrium-crypto-v0.1.1...atrium-crypto-v0.1.2) - 2024-10-28 + +### Other + +- update Cargo.toml dependencies ## [0.1.1](https://github.com/sugyan/atrium/compare/atrium-crypto-v0.1.0...atrium-crypto-v0.1.1) - 2024-09-20 ### Other diff --git a/atrium-crypto/Cargo.toml b/atrium-crypto/Cargo.toml index 61bb105e..71d65e75 100644 --- a/atrium-crypto/Cargo.toml +++ b/atrium-crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-crypto" -version = "0.1.1" +version = "0.1.2" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-xrpc-client/CHANGELOG.md b/atrium-xrpc-client/CHANGELOG.md index 018502a8..a7f7e145 100644 --- a/atrium-xrpc-client/CHANGELOG.md +++ b/atrium-xrpc-client/CHANGELOG.md @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.5.9](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.5.8...atrium-xrpc-client-v0.5.9) - 2024-10-28 + +### Other + +- update Cargo.toml dependencies ## [0.5.8](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.5.7...atrium-xrpc-client-v0.5.8) - 2024-09-20 ### Removed diff --git a/atrium-xrpc-client/Cargo.toml b/atrium-xrpc-client/Cargo.toml index 6448d4ad..5c94c9fb 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.8" +version = "0.5.9" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-xrpc/CHANGELOG.md b/atrium-xrpc/CHANGELOG.md index 125c99d2..0e4ee6c9 100644 --- a/atrium-xrpc/CHANGELOG.md +++ b/atrium-xrpc/CHANGELOG.md @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.11.6](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.11.5...atrium-xrpc-v0.11.6) - 2024-10-28 + +### Other + +- update Cargo.toml dependencies ## [0.11.5](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.11.4...atrium-xrpc-v0.11.5) - 2024-09-20 ### Removed diff --git a/atrium-xrpc/Cargo.toml b/atrium-xrpc/Cargo.toml index 81402cb7..2b027711 100644 --- a/atrium-xrpc/Cargo.toml +++ b/atrium-xrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-xrpc" -version = "0.11.5" +version = "0.11.6" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/bsky-cli/CHANGELOG.md b/bsky-cli/CHANGELOG.md index fdb56654..eb61f4fc 100644 --- a/bsky-cli/CHANGELOG.md +++ b/bsky-cli/CHANGELOG.md @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.1.25](https://github.com/sugyan/atrium/compare/bsky-cli-v0.1.24...bsky-cli-v0.1.25) - 2024-10-28 + +### Added + +- Update API, based on the latest lexicon schemas ([#241](https://github.com/sugyan/atrium/pull/241)) ## [0.1.24](https://github.com/sugyan/atrium/compare/bsky-cli-v0.1.23...bsky-cli-v0.1.24) - 2024-09-20 ### Removed diff --git a/bsky-cli/Cargo.toml b/bsky-cli/Cargo.toml index 36fa08e0..7919ab32 100644 --- a/bsky-cli/Cargo.toml +++ b/bsky-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bsky-cli" -version = "0.1.24" +version = "0.1.25" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/bsky-sdk/CHANGELOG.md b/bsky-sdk/CHANGELOG.md index 6f80503d..4f0e19e3 100644 --- a/bsky-sdk/CHANGELOG.md +++ b/bsky-sdk/CHANGELOG.md @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.1.12](https://github.com/sugyan/atrium/compare/bsky-sdk-v0.1.11...bsky-sdk-v0.1.12) - 2024-10-28 + +### Added + +- Update API, based on the latest lexicon schemas ([#241](https://github.com/sugyan/atrium/pull/241)) +- OAuth ([#219](https://github.com/sugyan/atrium/pull/219)) ## [0.1.11](https://github.com/sugyan/atrium/compare/bsky-sdk-v0.1.10...bsky-sdk-v0.1.11) - 2024-09-20 ### Removed diff --git a/bsky-sdk/Cargo.toml b/bsky-sdk/Cargo.toml index 27040280..150d836d 100644 --- a/bsky-sdk/Cargo.toml +++ b/bsky-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bsky-sdk" -version = "0.1.11" +version = "0.1.12" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true