diff --git a/Cargo.lock b/Cargo.lock index 6b2c3301..966234e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -721,7 +721,7 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "httpwg" -version = "0.2.3" +version = "0.2.4" dependencies = [ "b-x", "buffet", @@ -1052,7 +1052,7 @@ dependencies = [ [[package]] name = "loona-h2" -version = "0.4.0" +version = "0.4.1" dependencies = [ "buffet", "byteorder", @@ -1064,7 +1064,7 @@ dependencies = [ [[package]] name = "loona-hpack" -version = "0.4.1" +version = "0.4.2" dependencies = [ "hex", "serde", diff --git a/crates/httpwg-cli/Cargo.toml b/crates/httpwg-cli/Cargo.toml index cf18ffbd..4a5ab0a6 100644 --- a/crates/httpwg-cli/Cargo.toml +++ b/crates/httpwg-cli/Cargo.toml @@ -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"] } diff --git a/crates/httpwg-macros/Cargo.toml b/crates/httpwg-macros/Cargo.toml index 13301b4c..26290011 100644 --- a/crates/httpwg-macros/Cargo.toml +++ b/crates/httpwg-macros/Cargo.toml @@ -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" } diff --git a/crates/httpwg/CHANGELOG.md b/crates/httpwg/CHANGELOG.md index c903f368..f2e3b2f1 100644 --- a/crates/httpwg/CHANGELOG.md +++ b/crates/httpwg/CHANGELOG.md @@ -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 diff --git a/crates/httpwg/Cargo.toml b/crates/httpwg/Cargo.toml index feee54b6..9236daf8 100644 --- a/crates/httpwg/Cargo.toml +++ b/crates/httpwg/Cargo.toml @@ -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" @@ -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"] } diff --git a/crates/loona-h2/CHANGELOG.md b/crates/loona-h2/CHANGELOG.md index dedd27cc..0509fcd8 100644 --- a/crates/loona-h2/CHANGELOG.md +++ b/crates/loona-h2/CHANGELOG.md @@ -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 diff --git a/crates/loona-h2/Cargo.toml b/crates/loona-h2/Cargo.toml index a555b8a0..3fe90f6b 100644 --- a/crates/loona-h2/Cargo.toml +++ b/crates/loona-h2/Cargo.toml @@ -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" diff --git a/crates/loona-hpack/CHANGELOG.md b/crates/loona-hpack/CHANGELOG.md index 7be18887..cf933fd4 100644 --- a/crates/loona-hpack/CHANGELOG.md +++ b/crates/loona-hpack/CHANGELOG.md @@ -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 diff --git a/crates/loona-hpack/Cargo.toml b/crates/loona-hpack/Cargo.toml index a298b3bd..c9b1366b 100644 --- a/crates/loona-hpack/Cargo.toml +++ b/crates/loona-hpack/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loona-hpack" -version = "0.4.1" +version = "0.4.2" authors = [ "Amos Wenger ", "Marko Lalic ", diff --git a/crates/loona/Cargo.toml b/crates/loona/Cargo.toml index d53b9f76..2c505971 100644 --- a/crates/loona/Cargo.toml +++ b/crates/loona/Cargo.toml @@ -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 } @@ -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]