Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored and jbr committed Apr 7, 2024
1 parent a108c8b commit f0bff9e
Show file tree
Hide file tree
Showing 54 changed files with 324 additions and 70 deletions.
10 changes: 10 additions & 0 deletions api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [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
- add deprecation warnings to 0.2 branch in preparation for 0.3

### Other
- release
- release
- clippy

## [0.2.0-rc.10](https://github.com/trillium-rs/trillium/compare/trillium-api-v0.2.0-rc.9...trillium-api-v0.2.0-rc.10) - 2024-02-13

### Fixed
Expand Down
6 changes: 3 additions & 3 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.10"
version = "0.2.0-rc.11"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2021"
description = "an api handler for trillium.rs"
Expand All @@ -24,8 +24,8 @@ 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.18" }
trillium-macros = { version = "0.0.5", path = "../macros" }
trillium = { path = "../trillium", version = "0.2.19" }
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.18" }
trillium = { path = "../trillium", version = "0.2.19" }

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

[target.'cfg(unix)'.dependencies]
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.18" }
trillium-http = { path = "../http", version = "0.3.15" }
trillium = { path = "../trillium", version = "0.2.19" }
trillium-http = { path = "../http", version = "0.3.16" }
15 changes: 15 additions & 0 deletions basic-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.1](https://github.com/trillium-rs/trillium/compare/trillium-basic-auth-v0.1.0...trillium-basic-auth-v0.1.1) - 2024-04-07

### Added
- add deprecation warnings to 0.2 branch in preparation for 0.3

### Other
- *(deps)* update base64 requirement from 0.21.5 to 0.22.0
2 changes: 1 addition & 1 deletion basic-auth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trillium-basic-auth"
version = "0.1.0"
version = "0.1.1"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2021"
description = "basic auth for trillium.rs"
Expand Down
13 changes: 13 additions & 0 deletions caching-headers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ 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-caching-headers-v0.2.2...trillium-caching-headers-v0.2.3) - 2024-04-07

### Added
- add deprecation warnings to 0.2 branch in preparation for 0.3

### Other
- release
- release
- clippy
- Release only rustls
- release
- release

## [0.2.2](https://github.com/trillium-rs/trillium/compare/trillium-caching-headers-v0.2.1...trillium-caching-headers-v0.2.2) - 2024-01-02

### Other
Expand Down
4 changes: 2 additions & 2 deletions caching-headers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trillium-caching-headers"
version = "0.2.2"
version = "0.2.3"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2021"
description = "http caching headers for trillium.rs"
Expand All @@ -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.18" }
trillium = { path = "../trillium", version = "0.2.19" }

[dev-dependencies]
trillium-smol = { path = "../smol" }
Expand Down
4 changes: 2 additions & 2 deletions channels/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.18" }
trillium-websockets = { path = "../websockets", version = "0.6.2" }
trillium = { path = "../trillium", version = "0.2.19" }
trillium-websockets = { path = "../websockets", version = "0.6.5" }

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

### Added
- add deprecation warnings to 0.2 branch in preparation for 0.3

### Fixed
- *(client)* re-add Conn::without_header

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

### Fixed
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.0"
version = "0.6.1"
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.2", path = "../websockets", optional = true }
trillium-websockets = { version = "0.6.5", 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.15"
version = "0.3.16"

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

## [Unreleased]

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

### Added
- add deprecation warnings to 0.2 branch in preparation for 0.3

### Other
- release
- release
- *(deps)* update env_logger requirement from 0.10.1 to 0.11.0
- Release only rustls
- release
- release

## [0.1.1](https://github.com/trillium-rs/trillium/compare/trillium-compression-v0.1.0...trillium-compression-v0.1.1) - 2024-01-02

### Other
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.1"
version = "0.1.2"
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.18" }
trillium = { path = "../trillium", version = "0.2.19" }
log = "0.4.20"

[dependencies.async-compression]
Expand Down
12 changes: 12 additions & 0 deletions conn-id/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ 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-conn-id-v0.2.2...trillium-conn-id-v0.2.3) - 2024-04-07

### Added
- add deprecation warnings to 0.2 branch in preparation for 0.3

### Other
- release
- release
- Release only rustls
- release
- release

## [0.2.2](https://github.com/trillium-rs/trillium/compare/trillium-conn-id-v0.2.1...trillium-conn-id-v0.2.2) - 2024-01-02

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

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

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

## [Unreleased]

## [0.4.2](https://github.com/trillium-rs/trillium/compare/trillium-cookies-v0.4.1...trillium-cookies-v0.4.2) - 2024-04-07

### Added
- add deprecation warnings to 0.2 branch in preparation for 0.3

### Other
- release
- release
- *(deps)* update env_logger requirement from 0.10.1 to 0.11.0
- Release only rustls
- release
- release

## [0.4.1](https://github.com/trillium-rs/trillium/compare/trillium-cookies-v0.4.0...trillium-cookies-v0.4.1) - 2024-01-02

### Other
Expand Down
4 changes: 2 additions & 2 deletions cookies/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "0.4.1"
version = "0.4.2"
name = "trillium-cookies"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2021"
Expand All @@ -12,7 +12,7 @@ categories = ["web-programming::http-server", "web-programming"]

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

[dependencies.cookie]
version = "0.18.0"
Expand Down
13 changes: 13 additions & 0 deletions forwarding/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.4](https://github.com/trillium-rs/trillium/compare/trillium-forwarding-v0.2.3...trillium-forwarding-v0.2.4) - 2024-04-07

### Added
- add deprecation warnings to 0.2 branch in preparation for 0.3

### Other
- release
- release
- clippy
- Release only rustls
- release
- release

## [0.2.3](https://github.com/trillium-rs/trillium/compare/trillium-forwarding-v0.2.2...trillium-forwarding-v0.2.3) - 2024-01-02

### Other
Expand Down
4 changes: 2 additions & 2 deletions forwarding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trillium-forwarding"
version = "0.2.3"
version = "0.2.4"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2021"
description = "handler for trillium.rs that rewrites host/scheme from forwarded/x-forwarded headers"
Expand All @@ -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.18" }
trillium = { path = "../trillium", version = "0.2.19" }

[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.18" }
trillium = { path = "../trillium", version = "0.2.19" }

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

## [Unreleased]

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

### Added
- add deprecation warnings to 0.2 branch in preparation for 0.3

### Other
- release
- release
- clippy
- Release only rustls
- release
- release

## [0.2.1](https://github.com/trillium-rs/trillium/compare/trillium-head-v0.2.0...trillium-head-v0.2.1) - 2024-01-02

### Other
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.1"
version = "0.2.2"
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.18" }
trillium = { path = "../trillium", version = "0.2.19" }

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

## [Unreleased]

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

### Added
- add deprecation warnings to 0.2 branch in preparation for 0.3

### Fixed
- remove unreleased Upgrade::request_headers and Upgrade::request_headers_mut
- *(trillium)* fix the flaky liveness test

## [0.3.15](https://github.com/trillium-rs/trillium/compare/trillium-http-v0.3.14...trillium-http-v0.3.15) - 2024-03-22

### Added
Expand Down
Loading

0 comments on commit f0bff9e

Please sign in to comment.