Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jun 1, 2024
1 parent 21aa817 commit 0214303
Show file tree
Hide file tree
Showing 12 changed files with 84 additions and 18 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/fluke-buffet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1](https://github.com/bearcove/fluke/compare/fluke-buffet-v0.2.0...fluke-buffet-v0.2.1) - 2024-06-01

### Other
- More 4.2 tests
- Clean up 4_1 tests

## [0.2.0](https://github.com/bearcove/fluke/compare/fluke-buffet-v0.1.0...fluke-buffet-v0.2.0) - 2024-05-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/fluke-buffet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fluke-buffet"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/fluke"
Expand Down
2 changes: 1 addition & 1 deletion crates/fluke-curl-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
[dependencies]

[dev-dependencies]
fluke = { version = "0.1.1", path = "../../crates/fluke" }
fluke = { version = "0.1.2", path = "../../crates/fluke" }
bytes = { version = "1.5.0", default-features = false }
pretty_assertions = { version = "1.4.0", default-features = false, features = [
"std",
Expand Down
9 changes: 9 additions & 0 deletions crates/fluke-h2-parse/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/bearcove/fluke/compare/fluke-h2-parse-v0.1.1...fluke-h2-parse-v0.2.0) - 2024-06-01

### Other
- 5.1.2 tests
- 5.1 specs compile
- Add rfc 9113 section 5.1 specs
- 4.3 tests
- Clean up 4_1 tests

## [0.1.1](https://github.com/bearcove/fluke/compare/fluke-h2-parse-v0.1.0...fluke-h2-parse-v0.1.1) - 2024-05-27

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/fluke-h2-parse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fluke-h2-parse"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/fluke"
Expand All @@ -15,7 +15,7 @@ rust-version = "1.75"
enum-repr = "0.2.6"
enumflags2 = "0.7.9"
nom = { version = "7.1.3", default-features = false }
fluke-buffet = { version = "0.2.0", path = "../fluke-buffet" }
fluke-buffet = { version = "0.2.1", path = "../fluke-buffet" }
thiserror = "1.0.60"
byteorder = "1.5.0"
tracing = "0.1.40"
7 changes: 7 additions & 0 deletions crates/fluke/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2](https://github.com/bearcove/fluke/compare/fluke-v0.1.1...fluke-v0.1.2) - 2024-06-01

### Other
- 5.1.2 tests
- verify_stream_close might be wrong
- Add rfc 9113 section 5.1 specs

## [0.1.1](https://github.com/bearcove/fluke/compare/fluke-v0.1.0...fluke-v0.1.1) - 2024-05-27

### Added
Expand Down
8 changes: 4 additions & 4 deletions crates/fluke/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fluke"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/fluke"
Expand All @@ -21,7 +21,7 @@ uring = ["fluke-buffet/uring"]
byteorder = "1.5.0"
eyre = { version = "0.6.12", default-features = false }
futures-util = "0.3.30"
fluke-buffet = { version = "0.2.0", path = "../fluke-buffet" }
fluke-buffet = { version = "0.2.1", path = "../fluke-buffet" }
fluke-hpack = { version = "0.3.1", path = "../fluke-hpack" }
http = "1.1.0"
memchr = "2.7.1"
Expand All @@ -35,10 +35,10 @@ smallvec = { version = "1.13.1", default-features = false, features = [
thiserror = { version = "1.0.58", default-features = false }
tokio = { version = "1.36.0", features = ["macros", "sync"] }
tracing = { version = "0.1.40", default-features = false }
fluke-h2-parse = { version = "0.1.1", path = "../fluke-h2-parse" }
fluke-h2-parse = { version = "0.2.0", path = "../fluke-h2-parse" }

[dev-dependencies]
fluke-buffet = { version = "0.2.0", path = "../fluke-buffet" }
fluke-buffet = { version = "0.2.1", path = "../fluke-buffet" }
bytes = { version = "1.5.0", default-features = false }
pretty_assertions = { version = "1.4.0", default-features = false, features = [
"std",
Expand Down
23 changes: 23 additions & 0 deletions crates/httpwg-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 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/bearcove/fluke/compare/httpwg-macros-v0.1.0...httpwg-macros-v0.1.1) - 2024-06-01

### Other
- Section 5.3
- 5.1.2 tests
- 5.1.1 tests
- 5.1 specs compile
- Add rfc 9113 section 5.1 specs
- rename 3.4 tests to proper section
- 4.3 tests
- More 4.2 tests
- More 4.1 tests
- Clean up 4_1 tests
- Add a spec to 4_1_frame_format, cf. [#175](https://github.com/bearcove/fluke/pull/175)
- release
4 changes: 2 additions & 2 deletions crates/httpwg-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "httpwg-macros"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/fluke"
Expand All @@ -12,4 +12,4 @@ Macros to allow generating httpwg unit tests
rust-version = "1.75"

[dependencies]
httpwg = { version = "0.1.1", path = "../httpwg" }
httpwg = { version = "0.2.0", path = "../httpwg" }
21 changes: 21 additions & 0 deletions crates/httpwg/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/bearcove/fluke/compare/httpwg-v0.1.1...httpwg-v0.2.0) - 2024-06-01

### Other
- Section 5.3
- 5.1.2 tests
- 5.1.1 tests
- Take care of clippy warnings
- Remove some warnings
- All 5.1 tests pass
- verify_stream_close might be wrong
- Fix some tests
- 5.1 specs compile
- Add rfc 9113 section 5.1 specs
- rename 3.4 tests to proper section
- 4.3 tests
- More 4.2 tests
- More 4.1 tests
- clean up tests some more
- Clean up 4_1 tests
- Add a spec to 4_1_frame_format, cf. [#175](https://github.com/bearcove/fluke/pull/175)

## [0.1.1](https://github.com/bearcove/fluke/compare/httpwg-v0.1.0...httpwg-v0.1.1) - 2024-05-27

### Other
Expand Down
6 changes: 3 additions & 3 deletions crates/httpwg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "httpwg"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/fluke"
Expand All @@ -15,8 +15,8 @@ rust-version = "1.75"
bytes = "1.5.0"
enumflags2 = "0.7.9"
eyre = "0.6.12"
fluke-buffet = { version = "0.2.0", path = "../fluke-buffet" }
fluke-h2-parse = { version = "0.1.1", path = "../fluke-h2-parse" }
fluke-buffet = { version = "0.2.1", path = "../fluke-buffet" }
fluke-h2-parse = { version = "0.2.0", path = "../fluke-h2-parse" }
fluke-hpack = { version = "0.3.1", path = "../fluke-hpack" }
futures-util = "0.3.30"
multimap = { version = "0.10.0", default-features = false }
Expand Down

0 comments on commit 0214303

Please sign in to comment.