From 74df077e34057864c84294fac75a4de02151b685 Mon Sep 17 00:00:00 2001 From: sugyan Date: Tue, 20 Feb 2024 23:43:19 +0900 Subject: [PATCH] Force version bump --- Cargo.lock | 12 ++++++------ Cargo.toml | 6 +++--- atrium-api/CHANGELOG.md | 2 +- atrium-api/Cargo.toml | 2 +- atrium-xrpc-client/CHANGELOG.md | 2 +- atrium-xrpc-client/Cargo.toml | 2 +- atrium-xrpc/CHANGELOG.md | 2 +- atrium-xrpc/Cargo.toml | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dfc11991..98fd0670 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -395,10 +395,10 @@ dependencies = [ [[package]] name = "atrium-api" -version = "0.16.1" +version = "0.17.0" dependencies = [ "async-trait", - "atrium-xrpc 0.8.1", + "atrium-xrpc 0.9.0", "atrium-xrpc-client", "chrono", "cid 0.10.1", @@ -419,7 +419,7 @@ name = "atrium-cli" version = "0.1.0" dependencies = [ "async-trait", - "atrium-api 0.16.1", + "atrium-api 0.17.0", "atrium-xrpc-client", "chrono", "clap", @@ -445,7 +445,7 @@ dependencies = [ [[package]] name = "atrium-xrpc" -version = "0.8.1" +version = "0.9.0" dependencies = [ "async-trait", "http", @@ -458,10 +458,10 @@ dependencies = [ [[package]] name = "atrium-xrpc-client" -version = "0.2.1" +version = "0.3.0" dependencies = [ "async-trait", - "atrium-xrpc 0.8.1", + "atrium-xrpc 0.9.0", "futures", "http", "http-client", diff --git a/Cargo.toml b/Cargo.toml index 90deac33..285d0a1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,9 +22,9 @@ keywords = ["atproto", "bluesky"] [workspace.dependencies] # Intra-workspace dependencies -atrium-api = { version = "0.16.1", path = "atrium-api" } -atrium-xrpc = { version = "0.8.1", path = "atrium-xrpc" } -atrium-xrpc-client = { version = "0.2.1", path = "atrium-xrpc-client" } +atrium-api = { version = "0.17.0", path = "atrium-api" } +atrium-xrpc = { version = "0.9.0", path = "atrium-xrpc" } +atrium-xrpc-client = { version = "0.3.0", path = "atrium-xrpc-client" } atrium-xrpc-server = { version = "0.1.0", path = "atrium-xrpc-server" } # async in traits diff --git a/atrium-api/CHANGELOG.md b/atrium-api/CHANGELOG.md index 734ee5f7..57134aac 100644 --- a/atrium-api/CHANGELOG.md +++ b/atrium-api/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.16.1](https://github.com/sugyan/atrium/compare/atrium-api-v0.16.0...atrium-api-v0.16.1) - 2024-02-20 +## [0.17.0](https://github.com/sugyan/atrium/compare/atrium-api-v0.16.0...atrium-api-v0.17.0) - 2024-02-20 ### Added - Update API, based on the latest lexicon schemas ([#104](https://github.com/sugyan/atrium/pull/104)) diff --git a/atrium-api/Cargo.toml b/atrium-api/Cargo.toml index bbe7b53b..56dca656 100644 --- a/atrium-api/Cargo.toml +++ b/atrium-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-api" -version = "0.16.1" +version = "0.17.0" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-xrpc-client/CHANGELOG.md b/atrium-xrpc-client/CHANGELOG.md index 94a4e156..0aa610cb 100644 --- a/atrium-xrpc-client/CHANGELOG.md +++ b/atrium-xrpc-client/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.2.1](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.2.0...atrium-xrpc-client-v0.2.1) - 2024-02-20 +## [0.3.0](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.2.0...atrium-xrpc-client-v0.3.0) - 2024-02-20 ### Added - Update API, based on the latest lexicon schemas ([#104](https://github.com/sugyan/atrium/pull/104)) diff --git a/atrium-xrpc-client/Cargo.toml b/atrium-xrpc-client/Cargo.toml index f906a241..449bdc62 100644 --- a/atrium-xrpc-client/Cargo.toml +++ b/atrium-xrpc-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-xrpc-client" -version = "0.2.1" +version = "0.3.0" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true diff --git a/atrium-xrpc/CHANGELOG.md b/atrium-xrpc/CHANGELOG.md index 3cbbe3fe..d1d89b9d 100644 --- a/atrium-xrpc/CHANGELOG.md +++ b/atrium-xrpc/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.8.1](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.8.0...atrium-xrpc-v0.8.1) - 2024-02-20 +## [0.9.0](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.8.0...atrium-xrpc-v0.9.0) - 2024-02-20 ### Other - Move other dependencies into workspace dependencies table diff --git a/atrium-xrpc/Cargo.toml b/atrium-xrpc/Cargo.toml index c666744f..07980d12 100644 --- a/atrium-xrpc/Cargo.toml +++ b/atrium-xrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atrium-xrpc" -version = "0.8.1" +version = "0.9.0" authors = ["sugyan "] edition.workspace = true rust-version.workspace = true