Skip to content

Commit

Permalink
chore(main): release 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and sevki committed Mar 14, 2024
1 parent 6505b0f commit 0acffca
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.3.1"
".": "0.3.2"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.3.2](https://github.com/sevki/jetstream/compare/v0.3.1...v0.3.2) (2024-03-14)


### Bug Fixes

* auto-release feature ([6505b0f](https://github.com/sevki/jetstream/commit/6505b0ff66ce16b1032efe722620d03fbe945769))

## [0.3.1](https://github.com/sevki/jetstream/compare/v0.3.0...v0.3.1) (2024-03-14)


Expand Down
6 changes: 3 additions & 3 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
@@ -1,6 +1,6 @@
[package]
name = "jetstream"
version = "0.3.1"
version = "0.3.2"
edition = "2021"
description = "Jetstream is a RPC framework for Rust, based on the 9P protocol and QUIC."
license = "BSD-3-Clause"
Expand All @@ -10,8 +10,8 @@ repository = "https://github.com/sevki/jetstream"

[dependencies]
futures = "0.3.30"
jetstream_p9_wire_format_derive = { path = "./third_party/p9_wire_format_derive", version = "0.3.1" }
jetstream_p9 = { version = "0.3.1", path = "./third_party/rust-p9" }
jetstream_p9_wire_format_derive = { path = "./third_party/p9_wire_format_derive", version = "0.3.2" }
jetstream_p9 = { version = "0.3.2", path = "./third_party/rust-p9" }
tokio = { version = "1.35.1", features = ["full"] }
anyhow = "1.0.81"
async-trait = "0.1.77"
Expand Down
2 changes: 1 addition & 1 deletion third_party/p9_wire_format_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jetstream_p9_wire_format_derive"
version = "0.3.1"
version = "0.3.2"
authors = ["The ChromiumOS Authors"]
license = "BSD-3-Clause"
description = "Supporting proc-macro for the `p9` crate."
Expand Down
4 changes: 2 additions & 2 deletions third_party/rust-p9/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jetstream_p9"
version = "0.3.1"
version = "0.3.2"
authors = ["The ChromiumOS Authors"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/google/rust-p9"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
serde = { version = "1.0", features = ["derive"] }
jetstream_p9_wire_format_derive = { path = "../p9_wire_format_derive", version = "0.3.1" }
jetstream_p9_wire_format_derive = { path = "../p9_wire_format_derive", version = "0.3.2" }

[features]
trace = []
Expand Down

0 comments on commit 0acffca

Please sign in to comment.