Skip to content

Commit bb20500

Browse files
chore: release
1 parent 6e494cb commit bb20500

File tree

14 files changed

+83
-15
lines changed

14 files changed

+83
-15
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ keywords = ["atproto", "bluesky"]
2525

2626
[workspace.dependencies]
2727
# Intra-workspace dependencies
28-
atrium-api = { version = "0.25.4", path = "atrium-api", default-features = false }
28+
atrium-api = { version = "0.25.5", path = "atrium-api", default-features = false }
2929
atrium-common = { version = "0.1.2", path = "atrium-common" }
3030
atrium-crypto = { version = "0.1.2", path = "atrium-crypto" }
31-
atrium-identity = { version = "0.1.5", path = "atrium-identity" }
31+
atrium-identity = { version = "0.1.6", path = "atrium-identity" }
3232
atrium-xrpc = { version = "0.12.3", path = "atrium-xrpc" }
3333
atrium-xrpc-client = { version = "0.5.14", path = "atrium-xrpc-client" }
34-
bsky-sdk = { version = "0.1.20", path = "bsky-sdk" }
34+
bsky-sdk = { version = "0.1.21", path = "bsky-sdk" }
3535

3636
# async in streams
3737
async-stream = "0.3"

atrium-api/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.25.5](https://github.com/atrium-rs/atrium/compare/atrium-api-v0.25.4...atrium-api-v0.25.5) - 2025-08-16
11+
12+
### Fixed
13+
14+
- Add explicit lifetime annotation to Language::as_ref return type ([#323](https://github.com/atrium-rs/atrium/pull/323))
15+
# Changelog
216
All notable changes to this project will be documented in this file.
317

418
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

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

atrium-identity/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.6](https://github.com/atrium-rs/atrium/compare/atrium-identity-v0.1.5...atrium-identity-v0.1.6) - 2025-08-16
11+
12+
### Other
13+
14+
- trim https-well-known-method handle response ([#322](https://github.com/atrium-rs/atrium/pull/322))
15+
1016
## [0.1.5](https://github.com/atrium-rs/atrium/compare/atrium-identity-v0.1.4...atrium-identity-v0.1.5) - 2025-05-25
1117

1218
### Other

atrium-identity/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-identity"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

atrium-oauth/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.4](https://github.com/atrium-rs/atrium/compare/atrium-oauth-v0.1.3...atrium-oauth-v0.1.4) - 2025-08-16
11+
12+
### Other
13+
14+
- updated the following local packages: atrium-api, atrium-api, atrium-identity
15+
1016
## [0.1.3](https://github.com/atrium-rs/atrium/compare/atrium-oauth-v0.1.2...atrium-oauth-v0.1.3) - 2025-05-25
1117

1218
### Other

atrium-oauth/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-oauth"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

atrium-repo/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.5](https://github.com/atrium-rs/atrium/compare/atrium-repo-v0.1.4...atrium-repo-v0.1.5) - 2025-08-16
11+
12+
### Other
13+
14+
- updated the following local packages: atrium-api, atrium-api
15+
# Changelog
216
All notable changes to this project will be documented in this file.
317

418
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

atrium-repo/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-repo"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
authors = ["Justin Moore <[email protected]>", "Jack Grigg <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

0 commit comments

Comments
 (0)