Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ exclude = ["spikes/*"]
resolver = "3"

[workspace.package]
version = "0.1.0-alpha.5"
version = "0.1.0-alpha.6"
edition = "2024"
rust-version = "1.97.1"
license = "MIT"
repository = "https://github.com/PerryTS/turnloop"

[workspace.dependencies]
turnloop-io = { path = "crates/turnloop-io", version = "0.1.0-alpha.5" }
turnloop-wasi-random = { path = "crates/turnloop-wasi-random", version = "0.1.0-alpha.5" }
turnloop = { path = "crates/turnloop", version = "0.1.0-alpha.5" }
turnloop-io = { path = "crates/turnloop-io", version = "0.1.0-alpha.6" }
turnloop-wasi-random = { path = "crates/turnloop-wasi-random", version = "0.1.0-alpha.6" }
turnloop = { path = "crates/turnloop", version = "0.1.0-alpha.6" }
turnloop-contract = { path = "crates/turnloop-contract", version = "0.1.0-alpha.2" }
libc = "0.2.175"
futures-io = "0.3.31"
Expand All @@ -38,9 +38,9 @@ serde_json = "1"
getrandom = "0.4"
loom = "=0.7.2"
gungraun = "=0.19.4"
turnloop-tls = { path = "protocols/turnloop-tls", version = "0.1.0-alpha.5" }
turnloop-http = { path = "protocols/turnloop-http", version = "0.1.0-alpha.5" }
turnloop-zstd-decoder = { path = "protocols/turnloop-zstd-decoder", version = "0.1.0-alpha.5" }
turnloop-tls = { path = "protocols/turnloop-tls", version = "0.1.0-alpha.6" }
turnloop-http = { path = "protocols/turnloop-http", version = "0.1.0-alpha.6" }
turnloop-zstd-decoder = { path = "protocols/turnloop-zstd-decoder", version = "0.1.0-alpha.6" }
http = "1"
url = "2"
httparse = "1"
Expand Down
6 changes: 6 additions & 0 deletions crates/turnloop/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.1.0-alpha.6](https://github.com/PerryTS/turnloop/compare/turnloop-v0.1.0-alpha.5...turnloop-v0.1.0-alpha.6) - 2026-09-16

### Other

- Multi-threaded accept: a reuse-port request that names its promise, and the handoff proven ([#83](https://github.com/PerryTS/turnloop/pull/83))

## [0.1.0-alpha.5](https://github.com/PerryTS/turnloop/compare/turnloop-v0.1.0-alpha.4...turnloop-v0.1.0-alpha.5) - 2026-09-16

### Other
Expand Down
6 changes: 6 additions & 0 deletions protocols/turnloop-http/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.1.0-alpha.6](https://github.com/PerryTS/turnloop/compare/turnloop-http-v0.1.0-alpha.5...turnloop-http-v0.1.0-alpha.6) - 2026-09-16

### Other

- A terminated HTTP/2 stream no longer takes the connection with it ([#85](https://github.com/PerryTS/turnloop/pull/85))

## [0.1.0-alpha.3](https://github.com/PerryTS/turnloop/compare/turnloop-http-v0.1.0-alpha.2...turnloop-http-v0.1.0-alpha.3) - 2026-09-15

### Other
Expand Down
Loading