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 Dec 3, 2024
1 parent 84efc03 commit 355c9ce
Show file tree
Hide file tree
Showing 13 changed files with 45 additions and 21 deletions.
8 changes: 4 additions & 4 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/b-x/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]

## [1.0.2](https://github.com/bearcove/loona/compare/b-x-v1.0.1...b-x-v1.0.2) - 2024-12-03

### Other

- Add BX to b-x

## [1.0.1](https://github.com/bearcove/loona/compare/b-x-v1.0.0...b-x-v1.0.1) - 2024-09-05

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/b-x/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "b-x"
version = "1.0.1"
version = "1.0.2"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/loona"
Expand Down
6 changes: 6 additions & 0 deletions crates/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.3.2](https://github.com/bearcove/loona/compare/buffet-v0.3.1...buffet-v0.3.2) - 2024-12-03

### Other

- updated the following local packages: b-x

## [0.3.1](https://github.com/bearcove/loona/compare/buffet-v0.3.0...buffet-v0.3.1) - 2024-09-05

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/buffet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "buffet"
version = "0.3.1"
version = "0.3.2"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/loona"
Expand Down Expand Up @@ -40,7 +40,7 @@ tokio = { version = "1.39.2", features = [
] }
tracing = "0.1.40"
nix = "0.29.0"
b-x = { version = "1.0.1", path = "../b-x" }
b-x = { version = "1.0.2", path = "../b-x" }

[target.'cfg(target_os = "linux")'.dependencies]
luring = { path = "../luring", version = "0.1.1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/httpwg-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ path = "src/main.rs"
[dependencies]
color-eyre = "0.6.3"
eyre = "0.6.12"
buffet = { version = "0.3.1", path = "../buffet" }
httpwg = { version = "0.2.5", path = "../httpwg" }
buffet = { version = "0.3.2", path = "../buffet" }
httpwg = { version = "0.2.6", path = "../httpwg" }
lexopt = "0.3.0"
libc = "0.2.155"
tokio = { version = "1.39.2", features = ["time"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/httpwg-loona/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ A reference HTTP 1+2 server for httpwg, powered by loona

[dependencies]
color-eyre = "0.6.3"
loona = { version = "0.3.2", path = "../loona" }
buffet = { version = "0.3.1", path = "../buffet" }
loona = { version = "0.3.3", path = "../loona" }
buffet = { version = "0.3.2", path = "../buffet" }
tracing = { version = "0.1.40" }
tracing-subscriber = "0.3.18"
tokio = { version = "1.39.2", features = ["macros", "sync", "process"] }
eyre = { version = "0.6.12", default-features = false }
b-x = { version = "1.0.1", path = "../b-x" }
b-x = { version = "1.0.2", path = "../b-x" }
rcgen = { version = "0.13.1", default-features = false, features = [
"aws_lc_rs",
] }
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.5", path = "../httpwg" }
httpwg = { version = "0.2.6", 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.6](https://github.com/bearcove/loona/compare/httpwg-v0.2.5...httpwg-v0.2.6) - 2024-12-03

### Other

- updated the following local packages: b-x

## [0.2.5](https://github.com/bearcove/loona/compare/httpwg-v0.2.4...httpwg-v0.2.5) - 2024-11-03

### 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.5"
version = "0.2.6"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/loona"
Expand All @@ -15,11 +15,11 @@ rust-version = "1.75"
bytes = "1.7.1"
enumflags2 = "0.7.10"
eyre = "0.6.12"
buffet = { version = "0.3.1", path = "../buffet" }
buffet = { version = "0.3.2", path = "../buffet" }
loona-h2 = { version = "0.4.1", path = "../loona-h2" }
loona-hpack = { version = "0.4.3", path = "../loona-hpack" }
futures-util = "0.3.30"
pretty-hex = "0.4.1"
tokio = { version = "1.39.2", features = ["time"] }
tracing = "0.1.40"
b-x = { version = "1.0.1", path = "../b-x" }
b-x = { version = "1.0.2", path = "../b-x" }
2 changes: 1 addition & 1 deletion crates/loona-h2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rust-version = "1.75"
[dependencies]
enumflags2 = "0.7.10"
nom = { version = "7.1.3", default-features = false }
buffet = { version = "0.3.1", path = "../buffet" }
buffet = { version = "0.3.2", path = "../buffet" }
thiserror = "1.0.63"
byteorder = "1.5.0"
tracing = "0.1.40"
6 changes: 6 additions & 0 deletions crates/loona/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.3.3](https://github.com/bearcove/loona/compare/loona-v0.3.2...loona-v0.3.3) - 2024-12-03

### Other

- updated the following local packages: b-x

## [0.3.2](https://github.com/bearcove/loona/compare/loona-v0.3.1...loona-v0.3.2) - 2024-11-03

### Other
Expand Down
8 changes: 4 additions & 4 deletions crates/loona/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loona"
version = "0.3.2"
version = "0.3.3"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["http", "http1", "http2", "io-uring", "loona"]
Expand All @@ -25,7 +25,7 @@ harness = false
[dependencies]
byteorder = "1.5.0"
futures-util = "0.3.30"
buffet = { version = "0.3.1", path = "../buffet" }
buffet = { version = "0.3.2", path = "../buffet" }
loona-hpack = { version = "0.4.3", path = "../loona-hpack" }
http = "1.1.0"
memchr = "2.7.4"
Expand All @@ -40,10 +40,10 @@ 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.1", path = "../loona-h2" }
b-x = { version = "1.0.1", path = "../b-x" }
b-x = { version = "1.0.2", path = "../b-x" }

[dev-dependencies]
buffet = { version = "0.3.1", path = "../buffet" }
buffet = { version = "0.3.2", path = "../buffet" }
bytes = { version = "1.7.1", default-features = false }
pretty_assertions = { version = "1.4.0", default-features = false, features = [
"std",
Expand Down

0 comments on commit 355c9ce

Please sign in to comment.