Skip to content

Commit

Permalink
Merge pull request #120 from sugyan/release-plz-2024-02-27T02-23-03Z
Browse files Browse the repository at this point in the history
chore: release
  • Loading branch information
sugyan authored Feb 29, 2024
2 parents c0c297e + b717790 commit b03494d
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 19 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ keywords = ["atproto", "bluesky"]

[workspace.dependencies]
# Intra-workspace dependencies
atrium-api = { version = "0.17.2", path = "atrium-api" }
atrium-xrpc = { version = "0.9.0", path = "atrium-xrpc" }
atrium-xrpc-client = { version = "0.3.0", path = "atrium-xrpc-client" }
atrium-api = { version = "0.18.0", path = "atrium-api" }
atrium-xrpc = { version = "0.10.0", path = "atrium-xrpc" }
atrium-xrpc-client = { version = "0.4.0", path = "atrium-xrpc-client" }
atrium-xrpc-server = { version = "0.1.0", path = "atrium-xrpc-server" }

# async in traits
Expand Down
8 changes: 7 additions & 1 deletion atrium-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.0](https://github.com/sugyan/atrium/compare/atrium-api-v0.17.2...atrium-api-v0.18.0) - 2024-02-29

### Added
- Update API, based on the latest lexicon schemas ([#123](https://github.com/sugyan/atrium/pull/123))
- Support wasm32 ([#119](https://github.com/sugyan/atrium/pull/119))

### Changed
- For traits defined using `async_trait`, the `Send` bound is now optional with `wasm32-*` targets.

### Fixed
- `atrium_api::types::string::{Cid, Datetime}` can now be deserialized with `serde`.
- `atrium_api::types::string::{Cid, Datetime}` can now be deserialized with `serde`. ([#121](https://github.com/sugyan/atrium/pull/121))

## [0.17.2](https://github.com/sugyan/atrium/compare/atrium-api-v0.17.1...atrium-api-v0.17.2) - 2024-02-21

Expand Down
2 changes: 1 addition & 1 deletion atrium-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atrium-api"
version = "0.17.2"
version = "0.18.0"
authors = ["sugyan <sugi1982+github@gmail.com>"]
edition.workspace = true
rust-version.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions atrium-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/sugyan/atrium/compare/atrium-cli-v0.1.2...atrium-cli-v0.1.3) - 2024-02-29

### Other
- update Cargo.lock dependencies

## [0.1.2](https://github.com/sugyan/atrium/compare/atrium-cli-v0.1.1...atrium-cli-v0.1.2) - 2024-02-21

### Other
Expand Down
2 changes: 1 addition & 1 deletion atrium-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atrium-cli"
version = "0.1.2"
version = "0.1.3"
authors = ["sugyan <sugi1982+github@gmail.com>"]
edition.workspace = true
rust-version.workspace = true
Expand Down
5 changes: 4 additions & 1 deletion atrium-xrpc-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/sugyan/atrium/compare/atrium-xrpc-client-v0.3.0...atrium-xrpc-client-v0.4.0) - 2024-02-29

### Added
- WASM support with `reqwest::ReqwestClient`
- Support wasm32 ([#119](https://github.com/sugyan/atrium/pull/119))
- WASM support with `reqwest::ReqwestClient`

### Changed
- `reqwest-native` feature was renamed to `reqwest-default-tls`
Expand Down
2 changes: 1 addition & 1 deletion atrium-xrpc-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atrium-xrpc-client"
version = "0.3.0"
version = "0.4.0"
authors = ["sugyan <sugi1982+github@gmail.com>"]
edition.workspace = true
rust-version.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions atrium-xrpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.0](https://github.com/sugyan/atrium/compare/atrium-xrpc-v0.9.0...atrium-xrpc-v0.10.0) - 2024-02-29

### Added
- Support wasm32 ([#119](https://github.com/sugyan/atrium/pull/119))

### Changed
- For traits defined using `async_trait`, the `Send` bound is now optional with `wasm32-*` targets.

Expand Down
2 changes: 1 addition & 1 deletion atrium-xrpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atrium-xrpc"
version = "0.9.0"
version = "0.10.0"
authors = ["sugyan <sugi1982+github@gmail.com>"]
edition.workspace = true
rust-version.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ git_tag_enable = false
changelog_update = false

[[package]]
name = "atrium-api"
name = "atrium-xrpc"
publish = true
git_release_enable = true
git_tag_enable = true
changelog_update = true

[[package]]
name = "atrium-cli"
name = "atrium-api"
publish = true
git_release_enable = true
git_tag_enable = true
changelog_update = true

[[package]]
name = "atrium-xrpc"
name = "atrium-cli"
publish = true
git_release_enable = true
git_tag_enable = true
Expand Down

0 comments on commit b03494d

Please sign in to comment.