Skip to content

Commit 51e1948

Browse files
authored
Merge pull request #281 from sugyan/release-plz-2025-02-13T15-57-13Z
chore: release
2 parents 5122a78 + f94c6a9 commit 51e1948

File tree

12 files changed

+53
-14
lines changed

12 files changed

+53
-14
lines changed

Cargo.lock

Lines changed: 5 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ keywords = ["atproto", "bluesky"]
2424

2525
[workspace.dependencies]
2626
# Intra-workspace dependencies
27-
atrium-api = { version = "0.24.10", path = "atrium-api", default-features = false }
27+
atrium-api = { version = "0.25.0", path = "atrium-api", default-features = false }
2828
atrium-common = { version = "0.1.0", path = "atrium-common" }
2929
atrium-identity = { version = "0.1.0", path = "atrium-oauth/identity" }
30-
atrium-xrpc = { version = "0.12.0", path = "atrium-xrpc" }
31-
atrium-xrpc-client = { version = "0.5.10", path = "atrium-xrpc-client" }
32-
bsky-sdk = { version = "0.1.15", path = "bsky-sdk" }
30+
atrium-xrpc = { version = "0.12.1", path = "atrium-xrpc" }
31+
atrium-xrpc-client = { version = "0.5.11", path = "atrium-xrpc-client" }
32+
bsky-sdk = { version = "0.1.16", path = "bsky-sdk" }
3333

3434
# DAG-CBOR codec
3535
ipld-core = { version = "0.4.1", default-features = false, features = ["std"] }

atrium-api/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.25.0](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.10...atrium-api-v0.25.0) - 2025-02-17
10+
11+
### Added
12+
13+
- Add `Tid::now` and `Tid::from_datetime` constructors (#277)
14+
15+
### Changed
16+
17+
- Agent rework (#282)
18+
- Add `SessionManager` trait in preparation for OAuthSession addition.
19+
- Add `Agent` struct created from `SessionManager`.
20+
- Move `AtpAgent` as a wrapper for Agent created from `CredentialSession`.
21+
- `bsky-sdk` was also modified with the above changes.
22+
23+
924
## [0.24.10](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.9...atrium-api-v0.24.10) - 2025-01-21
1025

1126
### 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.10"
3+
version = "0.25.0"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

atrium-xrpc-client/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.11](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.5.10...atrium-xrpc-client-v0.5.11) - 2025-02-17
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.5.10](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.5.9...atrium-xrpc-client-v0.5.10) - 2024-11-19
1016

1117
### 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.10"
3+
version = "0.5.11"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

atrium-xrpc/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.12.1](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.12.0...atrium-xrpc-v0.12.1) - 2025-02-17
10+
11+
### Added
12+
13+
- Agent rework (#282)
14+
915
## [0.12.0](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.11.6...atrium-xrpc-v0.12.0) - 2024-11-19
1016

1117
### Added

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.12.0"
3+
version = "0.12.1"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

bsky-cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.28](https://github.com/sugyan/atrium/compare/bsky-cli-v0.1.27...bsky-cli-v0.1.28) - 2025-02-17
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.1.27](https://github.com/sugyan/atrium/compare/bsky-cli-v0.1.26...bsky-cli-v0.1.27) - 2025-01-21
1016

1117
### 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.27"
3+
version = "0.1.28"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

0 commit comments

Comments
 (0)