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

Diff for: Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+4-4
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"] }

Diff for: atrium-api/CHANGELOG.md

+7
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

Diff for: atrium-api/Cargo.toml

+1-1
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

Diff for: atrium-crypto/CHANGELOG.md

+6
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

Diff for: atrium-crypto/Cargo.toml

+1-1
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

Diff for: atrium-xrpc-client/CHANGELOG.md

+6
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

Diff for: atrium-xrpc-client/Cargo.toml

+1-1
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

Diff for: atrium-xrpc/CHANGELOG.md

+6
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

Diff for: atrium-xrpc/Cargo.toml

+1-1
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

Diff for: bsky-cli/CHANGELOG.md

+6
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.1.25](https://github.com/sugyan/atrium/compare/bsky-cli-v0.1.24...bsky-cli-v0.1.25) - 2024-10-28
10+
11+
### Added
12+
13+
- Update API, based on the latest lexicon schemas ([#241](https://github.com/sugyan/atrium/pull/241))
814
## [0.1.24](https://github.com/sugyan/atrium/compare/bsky-cli-v0.1.23...bsky-cli-v0.1.24) - 2024-09-20
915

1016
### Removed

Diff for: bsky-cli/Cargo.toml

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

Diff for: bsky-sdk/CHANGELOG.md

+7
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.1.12](https://github.com/sugyan/atrium/compare/bsky-sdk-v0.1.11...bsky-sdk-v0.1.12) - 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.1.11](https://github.com/sugyan/atrium/compare/bsky-sdk-v0.1.10...bsky-sdk-v0.1.11) - 2024-09-20
916

1017
### Removed

Diff for: bsky-sdk/Cargo.toml

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

0 commit comments

Comments
 (0)