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 and jbr committed May 30, 2024
1 parent 3676020 commit 8096b6a
Show file tree
Hide file tree
Showing 40 changed files with 115 additions and 50 deletions.
6 changes: 6 additions & 0 deletions api/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.0-rc.12](https://github.com/trillium-rs/trillium/compare/trillium-api-v0.2.0-rc.11...trillium-api-v0.2.0-rc.12) - 2024-05-30

### Added
- *(api)* [**breaking**] make IoErrors respond with BadRequest
- *(api)* [**breaking**] implement TryFromConn for `Vec<u8>` and `String`

## [0.2.0-rc.11](https://github.com/trillium-rs/trillium/compare/trillium-api-v0.2.0-rc.10...trillium-api-v0.2.0-rc.11) - 2024-04-07

### Added
Expand Down
4 changes: 2 additions & 2 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trillium-api"
version = "0.2.0-rc.11"
version = "0.2.0-rc.12"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2021"
description = "an api handler for trillium.rs"
Expand All @@ -24,7 +24,7 @@ serde_json = "1.0.108"
serde_path_to_error = "0.1.14"
serde_urlencoded = { version = "0.7.1", optional = true }
thiserror = "1.0.52"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }
trillium-macros = { version = "0.0.6", path = "../macros" }
url = { version = "2.5.0", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion askama/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["web-programming::http-server", "web-programming"]
[dependencies]
askama = "0.12.1"
mime_guess = "2.0.4"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }

[dev-dependencies]
trillium-smol = { path = "../smol" }
Expand Down
4 changes: 2 additions & 2 deletions async-std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ categories = ["web-programming::http-server", "web-programming"]
[dependencies]
async-std = "1.12.0"
log = "0.4.20"
trillium = { path = "../trillium", version = "0.2.19" }
trillium-http = { path = "../http", version = "0.3.16" }
trillium = { path = "../trillium", version = "0.2.20" }
trillium-http = { path = "../http", version = "0.3.17" }
trillium-macros = { version = "0.0.6", path = "../macros" }
trillium-server-common = { path = "../server-common", version = "0.5.2" }

Expand Down
4 changes: 2 additions & 2 deletions aws-lambda/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ serde = "1.0.193"
serde_derive = "1.0.193"
serde_json = "1.0.108"
tokio = { version = "1.35.1", features = ["rt", "net", "rt-multi-thread"], package = "tokio" }
trillium = { path = "../trillium", version = "0.2.19" }
trillium-http = { path = "../http", version = "0.3.16" }
trillium = { path = "../trillium", version = "0.2.20" }
trillium-http = { path = "../http", version = "0.3.17" }
2 changes: 1 addition & 1 deletion caching-headers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["web-programming::http-server", "web-programming"]
[dependencies]
etag = { version = "4.0.0", features = ["std"] }
httpdate = "1.0.3"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }

[dev-dependencies]
trillium-smol = { path = "../smol" }
Expand Down
14 changes: 14 additions & 0 deletions channels/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.2](https://github.com/trillium-rs/trillium/compare/trillium-channels-v0.3.1...trillium-channels-v0.3.2) - 2024-05-30

### Added
- deprecate set_state for insert_state

### Other
- release
- release
- release
- *(deps)* update async-broadcast requirement from 0.6.0 to 0.7.0
- Release only rustls
- release
- release

## [0.3.1](https://github.com/trillium-rs/trillium/compare/trillium-channels-v0.3.0...trillium-channels-v0.3.1) - 2024-01-02

### Other
Expand Down
6 changes: 3 additions & 3 deletions channels/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trillium-channels"
version = "0.3.1"
version = "0.3.2"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2021"
description = "websocket channels for trillium.rs"
Expand All @@ -20,8 +20,8 @@ log = "0.4.20"
querystrong = "0.3.0"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
trillium = { path = "../trillium", version = "0.2.19" }
trillium-websockets = { path = "../websockets", version = "0.6.5" }
trillium = { path = "../trillium", version = "0.2.20" }
trillium-websockets = { path = "../websockets", version = "0.6.6" }

[dev-dependencies]
trillium-api = { path = "../api" }
Expand Down
6 changes: 6 additions & 0 deletions client/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.6.2](https://github.com/trillium-rs/trillium/compare/trillium-client-v0.6.1...trillium-client-v0.6.2) - 2024-05-30

### Added
- deprecate Headers::contains_ignore_ascii_case
- *(client)* impl IntoUrl for IpAddr and SocketAddr for convenience

## [0.6.1](https://github.com/trillium-rs/trillium/compare/trillium-client-v0.6.0...trillium-client-v0.6.1) - 2024-04-07

### Added
Expand Down
6 changes: 3 additions & 3 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trillium-client"
version = "0.6.1"
version = "0.6.2"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2021"
description = "http/1.x client for trillium.rs"
Expand All @@ -21,7 +21,7 @@ httparse = "1.8.0"
log = "0.4.20"
size = "0.4.1"
trillium-server-common = { version = "0.5.2", path = "../server-common" }
trillium-websockets = { version = "0.6.5", path = "../websockets", optional = true }
trillium-websockets = { version = "0.6.6", path = "../websockets", optional = true }
mime = "0.3.17"
serde_json = { version = "1.0.108", optional = true }
serde = { version = "1.0.193", optional = true }
Expand All @@ -33,7 +33,7 @@ memchr = "2.7.1"
[dependencies.trillium-http]
path = "../http"
features = ["unstable"]
version = "0.3.16"
version = "0.3.17"

[dev-dependencies]
async-channel = "2.1.1"
Expand Down
5 changes: 5 additions & 0 deletions compression/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/trillium-rs/trillium/compare/trillium-compression-v0.1.2...trillium-compression-v0.1.3) - 2024-05-30

### Added
- deprecate set_state for insert_state

## [0.1.2](https://github.com/trillium-rs/trillium/compare/trillium-compression-v0.1.1...trillium-compression-v0.1.2) - 2024-04-07

### Added
Expand Down
4 changes: 2 additions & 2 deletions compression/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trillium-compression"
version = "0.1.2"
version = "0.1.3"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2021"
description = "compression handler for trillium.rs"
Expand All @@ -12,7 +12,7 @@ categories = ["web-programming::http-server", "web-programming"]

[dependencies]
futures-lite = "2.1.0"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }
log = "0.4.20"

[dependencies.async-compression]
Expand Down
2 changes: 1 addition & 1 deletion conn-id/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["web-programming::http-server", "web-programming"]

[dependencies]
fastrand = "2.0.1"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }

[dev-dependencies]
trillium-testing = { path = "../testing" }
Expand Down
2 changes: 1 addition & 1 deletion cookies/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["web-programming::http-server", "web-programming"]

[dependencies]
log = "0.4.20"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }

[dependencies.cookie]
version = "0.18.0"
Expand Down
2 changes: 1 addition & 1 deletion forwarding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["web-programming::http-server", "web-programming"]
[dependencies]
cidr = "0.2.2"
log = "0.4.20"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }

[dev-dependencies]
trillium-logger = { path = "../logger" }
Expand Down
2 changes: 1 addition & 1 deletion handlebars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ handlebars = { version = "5.0.0", features = ["dir_source"] }
log = "0.4.20"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }

[dev-dependencies]
env_logger = "0.11.0"
Expand Down
5 changes: 5 additions & 0 deletions head/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.3](https://github.com/trillium-rs/trillium/compare/trillium-head-v0.2.2...trillium-head-v0.2.3) - 2024-05-30

### Added
- deprecate set_state for insert_state

## [0.2.2](https://github.com/trillium-rs/trillium/compare/trillium-head-v0.2.1...trillium-head-v0.2.2) - 2024-04-07

### Added
Expand Down
4 changes: 2 additions & 2 deletions head/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trillium-head"
version = "0.2.2"
version = "0.2.3"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2021"
description = "http head handler for trillium.rs"
Expand All @@ -11,7 +11,7 @@ keywords = ["trillium", "framework", "async"]
categories = ["web-programming::http-server", "web-programming"]

[dependencies]
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }

[dev-dependencies]
trillium-smol = { path = "../smol" }
Expand Down
5 changes: 5 additions & 0 deletions http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.17](https://github.com/trillium-rs/trillium/compare/trillium-http-v0.3.16...trillium-http-v0.3.17) - 2024-05-30

### Added
- deprecate Headers::contains_ignore_ascii_case

## [0.3.16](https://github.com/trillium-rs/trillium/compare/trillium-http-v0.3.15...trillium-http-v0.3.16) - 2024-04-07

### Added
Expand Down
2 changes: 1 addition & 1 deletion http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trillium-http"
version = "0.3.16"
version = "0.3.17"
edition = "2021"
authors = ["Jacob Rothstein <[email protected]>"]
description = "the http implementation for the trillium toolkit"
Expand Down
2 changes: 1 addition & 1 deletion logger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ colored = "2.1.0"
log = "0.4.20"
size = "0.4.1"
time = { version = "0.3.31", features = ["local-offset", "formatting", "macros"] }
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }

[dev-dependencies]
access_log_parser = "0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion method-override/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["trillium", "framework", "async"]
categories = ["web-programming::http-server", "web-programming"]

[dependencies]
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }
querystrong = "0.3.0"

[dev-dependencies]
Expand Down
5 changes: 5 additions & 0 deletions proxy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.5](https://github.com/trillium-rs/trillium/compare/trillium-proxy-v0.5.4...trillium-proxy-v0.5.5) - 2024-05-30

### Added
- deprecate set_state for insert_state

## [0.5.4](https://github.com/trillium-rs/trillium/compare/trillium-proxy-v0.5.3...trillium-proxy-v0.5.4) - 2024-04-07

### Added
Expand Down
8 changes: 4 additions & 4 deletions proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trillium-proxy"
version = "0.5.4"
version = "0.5.5"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2021"
description = "reverse proxy for trillium.rs"
Expand All @@ -23,10 +23,10 @@ futures-lite = "2.1.0"
log = "0.4.20"
size = "0.4.1"
sluice = "0.5.5"
trillium = { path = "../trillium", version = "0.2.19" }
trillium-client = { path = "../client", version = "0.6.1" }
trillium = { path = "../trillium", version = "0.2.20" }
trillium-client = { path = "../client", version = "0.6.2" }
trillium-forwarding = { version = "0.2.4", path = "../forwarding" }
trillium-http = { path = "../http", version = "0.3.16", features = ["unstable"] }
trillium-http = { path = "../http", version = "0.3.17", features = ["unstable"] }
trillium-server-common = { version = "0.5.2", path = "../server-common", optional = true }
url = "2.5.0"

Expand Down
2 changes: 1 addition & 1 deletion redirect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ keywords = ["trillium", "framework", "async"]
categories = ["web-programming::http-server", "web-programming"]

[dependencies]
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }
2 changes: 1 addition & 1 deletion router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["web-programming::http-server", "web-programming"]
[dependencies]
log = "0.4.20"
routefinder = { version = "0.5.4", features = ["memchr"] }
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }

[dev-dependencies]
env_logger = "0.11.0"
Expand Down
4 changes: 2 additions & 2 deletions server-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ event-listener = "4.0.1"
futures-lite = "2.1.0"
log = "0.4.20"
pin-project-lite = "0.2.13"
trillium = { path = "../trillium", version = "0.2.19" }
trillium-http = { path = "../http", version = "0.3.16" }
trillium = { path = "../trillium", version = "0.2.20" }
trillium-http = { path = "../http", version = "0.3.17" }
url = "2.5.0"

[target.'cfg(unix)'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion sessions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["web-programming::http-server", "web-programming"]

[dependencies]
trillium-cookies = { path = "../cookies", version = "0.4.2" }
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }
async-session = "3.0.0"
log = "0.4.20"

Expand Down
4 changes: 2 additions & 2 deletions smol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ async-io = "2.2.2"
async-net = "2.0.0"
futures-lite = "2.1.0"
log = "0.4.20"
trillium = { path = "../trillium", version = "0.2.19" }
trillium-http = { path = "../http", version = "0.3.16" }
trillium = { path = "../trillium", version = "0.2.20" }
trillium-http = { path = "../http", version = "0.3.17" }
trillium-macros = { version = "0.0.6", path = "../macros" }
trillium-server-common = { path = "../server-common", version = "0.5.2" }

Expand Down
2 changes: 1 addition & 1 deletion sse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["web-programming::http-server", "web-programming"]

[dependencies]
futures-lite = "2.1.0"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }

[dev-dependencies]
broadcaster = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion static-compiled/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["web-programming::http-server", "web-programming"]
log = "0.4.20"
mime = "0.3.17"
mime_guess = "2.0.4"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }
httpdate = "1.0.3"
trillium-static-compiled-macros = { path = "../static-compiled-macros", version = "0.1.1" }

Expand Down
2 changes: 1 addition & 1 deletion static/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cfg-if = "1.0.0"
futures-lite = "2.1.0"
log = "0.4.20"
relative-path = "1.9.2"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }
mime_guess = "2.0.4"
httpdate = "1.0.3"
etag = { version = "4.0.0", features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion tera/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ log = "0.4.20"
mime_guess = "2.0.4"
serde = "1.0.193"
tera = "1.19.1"
trillium = { path = "../trillium", version = "0.2.19" }
trillium = { path = "../trillium", version = "0.2.20" }

[dev-dependencies]
trillium-smol = { path = "../smol" }
Expand Down
Loading

0 comments on commit 8096b6a

Please sign in to comment.