diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6b7b74c..cce9240 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.3.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index db930e2..649ce38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.3.1](https://github.com/sevki/jetstream/compare/v0.3.0...v0.3.1) (2024-03-14) + + +### Bug Fixes + +* broken release-please ([089bb22](https://github.com/sevki/jetstream/commit/089bb2277ba7025b61dbff32473d9b4b1836acd9)) +* ci release-please ([de391e5](https://github.com/sevki/jetstream/commit/de391e58d30f5f08d89f2f9251e9f734bd945bb1)) + ## [0.3.0](https://github.com/sevki/jetstream/compare/v0.2.0...v0.3.0) (2024-03-14) diff --git a/Cargo.lock b/Cargo.lock index ef1d1ce..5c7b88a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -743,7 +743,7 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "jetstream" -version = "0.0.0" +version = "0.3.1" dependencies = [ "anyhow", "async-stream", @@ -782,7 +782,7 @@ dependencies = [ [[package]] name = "jetstream_p9" -version = "0.3.0" +version = "0.3.1" dependencies = [ "genfs", "jetstream_p9_wire_format_derive", @@ -794,7 +794,7 @@ dependencies = [ [[package]] name = "jetstream_p9_wire_format_derive" -version = "0.3.0" +version = "0.3.1" dependencies = [ "pretty_assertions", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index ffc0228..6321ebc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jetstream" -version = "0.3.0" +version = "0.3.1" edition = "2021" description = "Jetstream is a RPC framework for Rust, based on the 9P protocol and QUIC." license = "BSD-3-Clause" @@ -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.0" } -jetstream_p9 = { version = "0.3.0", path = "./third_party/rust-p9" } +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" } tokio = { version = "1.35.1", features = ["full"] } anyhow = "1.0.81" async-trait = "0.1.77" diff --git a/third_party/p9_wire_format_derive/Cargo.toml b/third_party/p9_wire_format_derive/Cargo.toml index 827a423..8386198 100644 --- a/third_party/p9_wire_format_derive/Cargo.toml +++ b/third_party/p9_wire_format_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jetstream_p9_wire_format_derive" -version = "0.3.0" +version = "0.3.1" authors = ["The ChromiumOS Authors"] license = "BSD-3-Clause" description = "Supporting proc-macro for the `p9` crate." diff --git a/third_party/rust-p9/Cargo.toml b/third_party/rust-p9/Cargo.toml index 8b4cfa8..c3035c9 100644 --- a/third_party/rust-p9/Cargo.toml +++ b/third_party/rust-p9/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jetstream_p9" -version = "0.3.0" +version = "0.3.1" authors = ["The ChromiumOS Authors"] edition = "2021" license = "BSD-3-Clause" @@ -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.0" } +jetstream_p9_wire_format_derive = { path = "../p9_wire_format_derive", version = "0.3.1" } [features] trace = []