Skip to content

Commit 161493a

Browse files
authored
Merge pull request #240 from sugyan/release-plz-2024-10-28T09-00-07Z
chore: release
2 parents 249de72 + aa6cfa0 commit 161493a

File tree

14 files changed

+54
-16
lines changed

14 files changed

+54
-16
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ keywords = ["atproto", "bluesky"]
2525

2626
[workspace.dependencies]
2727
# Intra-workspace dependencies
28-
atrium-api = { version = "0.24.6", path = "atrium-api", default-features = false }
28+
atrium-api = { version = "0.24.7", path = "atrium-api", default-features = false }
2929
atrium-identity = { version = "0.1.0", path = "atrium-oauth/identity" }
30-
atrium-xrpc = { version = "0.11.5", path = "atrium-xrpc" }
31-
atrium-xrpc-client = { version = "0.5.8", path = "atrium-xrpc-client" }
32-
bsky-sdk = { version = "0.1.11", path = "bsky-sdk" }
30+
atrium-xrpc = { version = "0.11.6", path = "atrium-xrpc" }
31+
atrium-xrpc-client = { version = "0.5.9", path = "atrium-xrpc-client" }
32+
bsky-sdk = { version = "0.1.12", 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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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+
9+
## [0.24.7](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.6...atrium-api-v0.24.7) - 2024-10-28
10+
11+
### Added
12+
13+
- Update API, based on the latest lexicon schemas ([#241](https://github.com/sugyan/atrium/pull/241))
14+
- OAuth ([#219](https://github.com/sugyan/atrium/pull/219))
815
## [0.24.6](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.5...atrium-api-v0.24.6) - 2024-09-20
916

1017
### Removed

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

atrium-crypto/CHANGELOG.md

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

88
## [Unreleased]
9+
10+
## [0.1.2](https://github.com/sugyan/atrium/compare/atrium-crypto-v0.1.1...atrium-crypto-v0.1.2) - 2024-10-28
11+
12+
### Other
13+
14+
- update Cargo.toml dependencies
915
## [0.1.1](https://github.com/sugyan/atrium/compare/atrium-crypto-v0.1.0...atrium-crypto-v0.1.1) - 2024-09-20
1016

1117
### Other

atrium-crypto/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-crypto"
3-
version = "0.1.1"
3+
version = "0.1.2"
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
@@ -5,6 +5,12 @@ 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+
9+
## [0.5.9](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.5.8...atrium-xrpc-client-v0.5.9) - 2024-10-28
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
814
## [0.5.8](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.5.7...atrium-xrpc-client-v0.5.8) - 2024-09-20
915

1016
### Removed

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.8"
3+
version = "0.5.9"
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
@@ -5,6 +5,12 @@ 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+
9+
## [0.11.6](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.11.5...atrium-xrpc-v0.11.6) - 2024-10-28
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
814
## [0.11.5](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.11.4...atrium-xrpc-v0.11.5) - 2024-09-20
915

1016
### Removed

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

0 commit comments

Comments
 (0)