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 Sep 17, 2024
1 parent 610de8b commit e8a74c3
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 12 deletions.
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.

2 changes: 1 addition & 1 deletion crates/httpwg-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ path = "src/main.rs"
color-eyre = "0.6.3"
eyre = "0.6.12"
buffet = { version = "0.3.1", path = "../buffet" }
httpwg = { version = "0.2.3", path = "../httpwg" }
httpwg = { version = "0.2.4", path = "../httpwg" }
lexopt = "0.3.0"
libc = "0.2.155"
tokio = { version = "1.39.2", features = ["time"] }
Expand Down
8 changes: 8 additions & 0 deletions crates/httpwg-harness/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.0](https://github.com/bearcove/loona/releases/tag/httpwg-harness-v0.1.0) - 2024-09-17

### Other

- release
- Improve 404 message
- both hyper and loona httpwg clis use the harness now

## [0.1.0](https://github.com/bearcove/loona/releases/tag/httpwg-harness-v0.1.0) - 2024-09-05

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/httpwg-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ Macros to allow generating httpwg unit tests
rust-version = "1.75"

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

## [Unreleased]

## [0.2.4](https://github.com/bearcove/loona/compare/httpwg-v0.2.3...httpwg-v0.2.4) - 2024-09-17

### Other

- updated the following local packages: loona-h2, loona-hpack

## [0.2.3](https://github.com/bearcove/loona/compare/httpwg-v0.2.2...httpwg-v0.2.3) - 2024-09-05

### 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.2.3"
version = "0.2.4"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/loona"
Expand All @@ -16,8 +16,8 @@ bytes = "1.7.1"
enumflags2 = "0.7.10"
eyre = "0.6.12"
buffet = { version = "0.3.1", path = "../buffet" }
loona-h2 = { version = "0.4.0", path = "../loona-h2" }
loona-hpack = { version = "0.4.1", path = "../loona-hpack" }
loona-h2 = { version = "0.4.1", path = "../loona-h2" }
loona-hpack = { version = "0.4.2", path = "../loona-hpack" }
futures-util = "0.3.30"
pretty-hex = "0.4.1"
tokio = { version = "1.39.2", features = ["time"] }
Expand Down
6 changes: 6 additions & 0 deletions crates/loona-h2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.1](https://github.com/bearcove/loona/compare/loona-h2-v0.4.0...loona-h2-v0.4.1) - 2024-09-17

### Other

- Upgrade misiasart website

## [0.4.0](https://github.com/bearcove/loona/compare/loona-h2-v0.3.0...loona-h2-v0.4.0) - 2024-09-05

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/loona-h2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loona-h2"
version = "0.4.0"
version = "0.4.1"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/loona"
Expand Down
6 changes: 6 additions & 0 deletions crates/loona-hpack/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.4.2](https://github.com/bearcove/loona/compare/loona-hpack-v0.4.1...loona-hpack-v0.4.2) - 2024-09-17

### Other

- Upgrade misiasart website

## [0.4.1](https://github.com/bearcove/loona/compare/loona-hpack-v0.4.0...loona-hpack-v0.4.1) - 2024-09-05

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/loona-hpack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loona-hpack"
version = "0.4.1"
version = "0.4.2"
authors = [
"Amos Wenger <amos@bearcove.net>",
"Marko Lalic <marko.lalic@gmail.com>",
Expand Down
4 changes: 2 additions & 2 deletions crates/loona/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ harness = false
byteorder = "1.5.0"
futures-util = "0.3.30"
buffet = { version = "0.3.1", path = "../buffet" }
loona-hpack = { version = "0.4.1", path = "../loona-hpack" }
loona-hpack = { version = "0.4.2", path = "../loona-hpack" }
http = "1.1.0"
memchr = "2.7.4"
nom = { version = "7.1.3", default-features = false }
Expand All @@ -39,7 +39,7 @@ smallvec = { version = "1.13.2", default-features = false, features = [
thiserror = { version = "1.0.63", default-features = false }
tokio = { version = "1.39.2", features = ["macros", "sync"] }
tracing = { version = "0.1.40", default-features = false }
loona-h2 = { version = "0.4.0", path = "../loona-h2" }
loona-h2 = { version = "0.4.1", path = "../loona-h2" }
b-x = { version = "1.0.1", path = "../b-x" }

[dev-dependencies]
Expand Down

0 comments on commit e8a74c3

Please sign in to comment.