From 7e060b24adf4ed739cca149b3db14f8671bad144 Mon Sep 17 00:00:00 2001 From: release-plz Date: Tue, 3 Oct 2023 01:02:54 +0000 Subject: [PATCH] chore: release Signed-off-by: release-plz --- crates/fluke-buffet/CHANGELOG.md | 13 +++++++++++++ crates/fluke-buffet/Cargo.toml | 2 +- crates/fluke-h2spec/Cargo.toml | 2 +- crates/fluke-hpack/CHANGELOG.md | 12 ++++++++++++ crates/fluke-maybe-uring/CHANGELOG.md | 12 ++++++++++++ crates/fluke-maybe-uring/Cargo.toml | 2 +- crates/fluke-tls-sample/Cargo.toml | 2 +- crates/fluke/CHANGELOG.md | 13 +++++++++++++ crates/fluke/Cargo.toml | 4 ++-- 9 files changed, 56 insertions(+), 6 deletions(-) create mode 100644 crates/fluke-buffet/CHANGELOG.md create mode 100644 crates/fluke-hpack/CHANGELOG.md create mode 100644 crates/fluke-maybe-uring/CHANGELOG.md create mode 100644 crates/fluke/CHANGELOG.md diff --git a/crates/fluke-buffet/CHANGELOG.md b/crates/fluke-buffet/CHANGELOG.md new file mode 100644 index 00000000..971cd73e --- /dev/null +++ b/crates/fluke-buffet/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0](https://github.com/hapsoc/fluke/releases/tag/fluke-buffet-v0.1.0) - 2023-10-03 + +### Other +- Add more READMEs +- Rebrand to fluke diff --git a/crates/fluke-buffet/Cargo.toml b/crates/fluke-buffet/Cargo.toml index 9231d3ee..4dd28d8d 100644 --- a/crates/fluke-buffet/Cargo.toml +++ b/crates/fluke-buffet/Cargo.toml @@ -20,7 +20,7 @@ miri = [] [dependencies] eyre = "0.6.8" http = "0.2.9" -fluke-maybe-uring = { version = "0.1.0", path = "../fluke-maybe-uring" } +fluke-maybe-uring = { version = "0.1.1", path = "../fluke-maybe-uring" } memchr = "2.5.0" memmap2 = { version = "0.7.0", default-features = false } nom = "7.1.3" diff --git a/crates/fluke-h2spec/Cargo.toml b/crates/fluke-h2spec/Cargo.toml index 291210e5..07948c92 100644 --- a/crates/fluke-h2spec/Cargo.toml +++ b/crates/fluke-h2spec/Cargo.toml @@ -13,7 +13,7 @@ tokio = { version = "1.28.2", features = ["full"] } tracing = "0.1.37" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } which = "4.4.0" -fluke-maybe-uring = { version = "0.1.0", path = "../../crates/fluke-maybe-uring", features = ["net"] } +fluke-maybe-uring = { version = "0.1.1", path = "../../crates/fluke-maybe-uring", features = ["net"] } [features] default = ["tokio-uring"] diff --git a/crates/fluke-hpack/CHANGELOG.md b/crates/fluke-hpack/CHANGELOG.md new file mode 100644 index 00000000..b053c281 --- /dev/null +++ b/crates/fluke-hpack/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.3.0](https://github.com/hapsoc/fluke/releases/tag/fluke-hpack-v0.3.0) - 2023-10-03 + +### Other +- Rebrand to fluke diff --git a/crates/fluke-maybe-uring/CHANGELOG.md b/crates/fluke-maybe-uring/CHANGELOG.md new file mode 100644 index 00000000..d4430914 --- /dev/null +++ b/crates/fluke-maybe-uring/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.1](https://github.com/hapsoc/fluke/compare/fluke-maybe-uring-v0.1.0...fluke-maybe-uring-v0.1.1) - 2023-10-03 + +### Other +- Add more READMEs diff --git a/crates/fluke-maybe-uring/Cargo.toml b/crates/fluke-maybe-uring/Cargo.toml index b73e644e..76c665b8 100644 --- a/crates/fluke-maybe-uring/Cargo.toml +++ b/crates/fluke-maybe-uring/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fluke-maybe-uring" -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/hapsoc/fluke" diff --git a/crates/fluke-tls-sample/Cargo.toml b/crates/fluke-tls-sample/Cargo.toml index 55bbcb3c..0c746167 100644 --- a/crates/fluke-tls-sample/Cargo.toml +++ b/crates/fluke-tls-sample/Cargo.toml @@ -16,7 +16,7 @@ tokio = { version = "1.28.2", features = ["full"] } tokio-rustls = "0.23.4" http = "0.2.9" pretty-hex = "0.3.0" -fluke-maybe-uring = { version = "0.1.0", path = "../fluke-maybe-uring" } +fluke-maybe-uring = { version = "0.1.1", path = "../fluke-maybe-uring" } socket2 = "0.5.3" [target.'cfg(target_os = "linux")'.dependencies] diff --git a/crates/fluke/CHANGELOG.md b/crates/fluke/CHANGELOG.md new file mode 100644 index 00000000..3ae58597 --- /dev/null +++ b/crates/fluke/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0](https://github.com/hapsoc/fluke/releases/tag/fluke-v0.1.0) - 2023-10-03 + +### Other +- Fix fluke-maybe-uring cargo-publish showstoppers +- Rebrand to fluke diff --git a/crates/fluke/Cargo.toml b/crates/fluke/Cargo.toml index f3714a17..dfed3b49 100644 --- a/crates/fluke/Cargo.toml +++ b/crates/fluke/Cargo.toml @@ -25,7 +25,7 @@ futures-util = "0.3.28" fluke-buffet = { version = "0.1.0", path = "../fluke-buffet" } fluke-hpack = { version = "0.3.0", path = "../fluke-hpack" } http = "0.2.9" -fluke-maybe-uring = { version = "0.1.0", path = "../fluke-maybe-uring" } +fluke-maybe-uring = { version = "0.1.1", path = "../fluke-maybe-uring" } memchr = "2.5.0" nom = { version = "7.1.3", default-features = false } pretty-hex = { version = "0.3.0", default-features = false } @@ -35,7 +35,7 @@ tokio = { version = "1.28.2", features = ["macros", "sync"] } tracing = { version = "0.1.37", default-features = false } [dev-dependencies] -fluke-maybe-uring = { version = "0.1.0", path = "../fluke-maybe-uring", features = ["net"] } +fluke-maybe-uring = { version = "0.1.1", path = "../fluke-maybe-uring", features = ["net"] } bytes = { version = "1.4.0", default-features = false } pretty_assertions = { version = "1.3.0", default-features = false, features = ["std"] } tokio-stream = { version = "0.1.14", default-features = false }