Skip to content

Commit dc56507

Browse files
authored
Merge pull request #237 from sugyan/release-plz-2024-09-20T13-51-31Z
chore: release
2 parents 245d61f + eb4d5f5 commit dc56507

File tree

12 files changed

+48
-15
lines changed

12 files changed

+48
-15
lines changed

Cargo.lock

Lines changed: 18 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ keywords = ["atproto", "bluesky"]
2323

2424
[workspace.dependencies]
2525
# Intra-workspace dependencies
26-
atrium-api = { version = "0.24.5", path = "atrium-api" }
27-
atrium-xrpc = { version = "0.11.4", path = "atrium-xrpc" }
28-
atrium-xrpc-client = { version = "0.5.7", path = "atrium-xrpc-client" }
29-
bsky-sdk = { version = "0.1.10", path = "bsky-sdk" }
26+
atrium-api = { version = "0.24.6", path = "atrium-api" }
27+
atrium-xrpc = { version = "0.11.5", path = "atrium-xrpc" }
28+
atrium-xrpc-client = { version = "0.5.8", path = "atrium-xrpc-client" }
29+
bsky-sdk = { version = "0.1.11", path = "bsky-sdk" }
3030

3131
# DAG-CBOR codec
3232
ipld-core = { version = "0.4.1", default-features = false, features = ["std"] }
@@ -74,4 +74,4 @@ wasm-bindgen-test = "0.3.41"
7474
bumpalo = "~3.14.0"
7575

7676
# Code generation
77-
trait-variant = "0.1.2"
77+
trait-variant = "0.1.2"

atrium-api/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [0.24.6](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.5...atrium-api-v0.24.6) - 2024-09-20
9+
10+
### Removed
11+
- remove async_trait crate due to increased MSRV ([#234](https://github.com/sugyan/atrium/pull/234)) by @Elaina
812
## [0.24.5](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.4...atrium-api-v0.24.5) - 2024-09-20
913

1014
### Other

atrium-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atrium-api"
3-
version = "0.24.5"
3+
version = "0.24.6"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

atrium-xrpc-client/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [0.5.8](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.5.7...atrium-xrpc-client-v0.5.8) - 2024-09-20
9+
10+
### Removed
11+
- remove async_trait crate due to increased MSRV ([#234](https://github.com/sugyan/atrium/pull/234)) by @Elaina
812
## [0.5.7](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.5.6...atrium-xrpc-client-v0.5.7) - 2024-09-20
913

1014
### Other

atrium-xrpc-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atrium-xrpc-client"
3-
version = "0.5.7"
3+
version = "0.5.8"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

atrium-xrpc/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [0.11.5](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.11.4...atrium-xrpc-v0.11.5) - 2024-09-20
9+
10+
### Removed
11+
- remove async_trait crate due to increased MSRV ([#234](https://github.com/sugyan/atrium/pull/234)) by @Elaina
812
## [0.11.4](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.11.3...atrium-xrpc-v0.11.4) - 2024-09-20
913

1014
### Other

atrium-xrpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atrium-xrpc"
3-
version = "0.11.4"
3+
version = "0.11.5"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

bsky-cli/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [0.1.24](https://github.com/sugyan/atrium/compare/bsky-cli-v0.1.23...bsky-cli-v0.1.24) - 2024-09-20
9+
10+
### Removed
11+
- remove async_trait crate due to increased MSRV ([#234](https://github.com/sugyan/atrium/pull/234)) by @Elaina
812
## [0.1.23](https://github.com/sugyan/atrium/compare/bsky-cli-v0.1.22...bsky-cli-v0.1.23) - 2024-09-20
913

1014
### Other

bsky-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bsky-cli"
3-
version = "0.1.23"
3+
version = "0.1.24"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

bsky-sdk/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [0.1.11](https://github.com/sugyan/atrium/compare/bsky-sdk-v0.1.10...bsky-sdk-v0.1.11) - 2024-09-20
9+
10+
### Removed
11+
- remove async_trait crate due to increased MSRV ([#234](https://github.com/sugyan/atrium/pull/234)) by @Elaina
812
## [0.1.10](https://github.com/sugyan/atrium/compare/bsky-sdk-v0.1.9...bsky-sdk-v0.1.10) - 2024-09-20
913

1014
### Other

bsky-sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bsky-sdk"
3-
version = "0.1.10"
3+
version = "0.1.11"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

0 commit comments

Comments
 (0)