Skip to content

Commit

Permalink
chore(main): release 0.3.1
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 de391e5 commit 20251ea
Show file tree
Hide file tree
Showing 6 changed files with 18 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.0"
".": "0.3.1"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


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.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"
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.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"
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.0"
version = "0.3.1"
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.0"
version = "0.3.1"
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.0" }
jetstream_p9_wire_format_derive = { path = "../p9_wire_format_derive", version = "0.3.1" }

[features]
trace = []
Expand Down

0 comments on commit 20251ea

Please sign in to comment.