Skip to content

Commit

Permalink
Merge pull request #112 from hapsoc/release-plz/2023-10-03T00-00-33Z
Browse files Browse the repository at this point in the history
chore: release
  • Loading branch information
fasterthanlime authored Oct 3, 2023
2 parents 39bb5c5 + 7e060b2 commit f013c16
Show file tree
Hide file tree
Showing 9 changed files with 56 additions and 6 deletions.
13 changes: 13 additions & 0 deletions crates/fluke-buffet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion crates/fluke-buffet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/fluke-h2spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
12 changes: 12 additions & 0 deletions crates/fluke-hpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions crates/fluke-maybe-uring/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion crates/fluke-maybe-uring/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/fluke-tls-sample/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
13 changes: 13 additions & 0 deletions crates/fluke/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions crates/fluke/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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 }
Expand Down

0 comments on commit f013c16

Please sign in to comment.