diff --git a/api/CHANGELOG.md b/api/CHANGELOG.md index ed57a58cb9..7effc4c79e 100644 --- a/api/CHANGELOG.md +++ b/api/CHANGELOG.md @@ -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` 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 diff --git a/api/Cargo.toml b/api/Cargo.toml index 43069147eb..cdcb4726ca 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trillium-api" -version = "0.2.0-rc.11" +version = "0.2.0-rc.12" authors = ["Jacob Rothstein "] edition = "2021" description = "an api handler for trillium.rs" @@ -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 } diff --git a/askama/Cargo.toml b/askama/Cargo.toml index c74473ba57..5ace8c412b 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -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" } diff --git a/async-std/Cargo.toml b/async-std/Cargo.toml index 22696c9918..92667ccb7b 100644 --- a/async-std/Cargo.toml +++ b/async-std/Cargo.toml @@ -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" } diff --git a/aws-lambda/Cargo.toml b/aws-lambda/Cargo.toml index 684146024e..47143cf828 100644 --- a/aws-lambda/Cargo.toml +++ b/aws-lambda/Cargo.toml @@ -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" } diff --git a/caching-headers/Cargo.toml b/caching-headers/Cargo.toml index ed65436db1..84e65e0f71 100644 --- a/caching-headers/Cargo.toml +++ b/caching-headers/Cargo.toml @@ -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" } diff --git a/channels/CHANGELOG.md b/channels/CHANGELOG.md index 89502e2bdf..36db75272a 100644 --- a/channels/CHANGELOG.md +++ b/channels/CHANGELOG.md @@ -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 diff --git a/channels/Cargo.toml b/channels/Cargo.toml index 7a1338f2e0..0ffde7bcc3 100644 --- a/channels/Cargo.toml +++ b/channels/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trillium-channels" -version = "0.3.1" +version = "0.3.2" authors = ["Jacob Rothstein "] edition = "2021" description = "websocket channels for trillium.rs" @@ -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" } diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index 729986b3d7..c0cfeb9a43 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -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 diff --git a/client/Cargo.toml b/client/Cargo.toml index 18dfc890c8..e9179be0fa 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trillium-client" -version = "0.6.1" +version = "0.6.2" authors = ["Jacob Rothstein "] edition = "2021" description = "http/1.x client for trillium.rs" @@ -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 } @@ -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" diff --git a/compression/CHANGELOG.md b/compression/CHANGELOG.md index 864a5c08d1..a8246a1e21 100644 --- a/compression/CHANGELOG.md +++ b/compression/CHANGELOG.md @@ -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 diff --git a/compression/Cargo.toml b/compression/Cargo.toml index 04c22c061f..e4e962bcce 100644 --- a/compression/Cargo.toml +++ b/compression/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trillium-compression" -version = "0.1.2" +version = "0.1.3" authors = ["Jacob Rothstein "] edition = "2021" description = "compression handler for trillium.rs" @@ -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] diff --git a/conn-id/Cargo.toml b/conn-id/Cargo.toml index 52591691aa..760b855fff 100644 --- a/conn-id/Cargo.toml +++ b/conn-id/Cargo.toml @@ -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" } diff --git a/cookies/Cargo.toml b/cookies/Cargo.toml index 69d1dc3d38..78527cecbd 100644 --- a/cookies/Cargo.toml +++ b/cookies/Cargo.toml @@ -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" diff --git a/forwarding/Cargo.toml b/forwarding/Cargo.toml index 56e89e144b..fd662a319c 100644 --- a/forwarding/Cargo.toml +++ b/forwarding/Cargo.toml @@ -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" } diff --git a/handlebars/Cargo.toml b/handlebars/Cargo.toml index 8601740972..cb725a1394 100644 --- a/handlebars/Cargo.toml +++ b/handlebars/Cargo.toml @@ -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" diff --git a/head/CHANGELOG.md b/head/CHANGELOG.md index 46669eca17..ba6ef8ed53 100644 --- a/head/CHANGELOG.md +++ b/head/CHANGELOG.md @@ -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 diff --git a/head/Cargo.toml b/head/Cargo.toml index a3f746d043..6427df3945 100644 --- a/head/Cargo.toml +++ b/head/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trillium-head" -version = "0.2.2" +version = "0.2.3" authors = ["Jacob Rothstein "] edition = "2021" description = "http head handler for trillium.rs" @@ -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" } diff --git a/http/CHANGELOG.md b/http/CHANGELOG.md index 1ba6c094a8..24c700ecb7 100644 --- a/http/CHANGELOG.md +++ b/http/CHANGELOG.md @@ -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 diff --git a/http/Cargo.toml b/http/Cargo.toml index fd9fb72003..cc5b60fd4a 100644 --- a/http/Cargo.toml +++ b/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trillium-http" -version = "0.3.16" +version = "0.3.17" edition = "2021" authors = ["Jacob Rothstein "] description = "the http implementation for the trillium toolkit" diff --git a/logger/Cargo.toml b/logger/Cargo.toml index 92d688160d..586f9eefb6 100644 --- a/logger/Cargo.toml +++ b/logger/Cargo.toml @@ -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" diff --git a/method-override/Cargo.toml b/method-override/Cargo.toml index e0b788466b..2c6d7087f7 100644 --- a/method-override/Cargo.toml +++ b/method-override/Cargo.toml @@ -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] diff --git a/proxy/CHANGELOG.md b/proxy/CHANGELOG.md index 065f81e49c..85e5535df6 100644 --- a/proxy/CHANGELOG.md +++ b/proxy/CHANGELOG.md @@ -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 diff --git a/proxy/Cargo.toml b/proxy/Cargo.toml index dc2e969934..72a6b3347e 100644 --- a/proxy/Cargo.toml +++ b/proxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trillium-proxy" -version = "0.5.4" +version = "0.5.5" authors = ["Jacob Rothstein "] edition = "2021" description = "reverse proxy for trillium.rs" @@ -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" diff --git a/redirect/Cargo.toml b/redirect/Cargo.toml index 10a680337a..f2ad8d74fd 100644 --- a/redirect/Cargo.toml +++ b/redirect/Cargo.toml @@ -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" } diff --git a/router/Cargo.toml b/router/Cargo.toml index 3f14dedfa0..1d1a790ba6 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -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" diff --git a/server-common/Cargo.toml b/server-common/Cargo.toml index 37df32ea8f..0cba8312ed 100644 --- a/server-common/Cargo.toml +++ b/server-common/Cargo.toml @@ -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] diff --git a/sessions/Cargo.toml b/sessions/Cargo.toml index 8fabcb5ea7..b242f24990 100644 --- a/sessions/Cargo.toml +++ b/sessions/Cargo.toml @@ -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" diff --git a/smol/Cargo.toml b/smol/Cargo.toml index b6da8b8138..bdca3de307 100644 --- a/smol/Cargo.toml +++ b/smol/Cargo.toml @@ -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" } diff --git a/sse/Cargo.toml b/sse/Cargo.toml index 454142238e..a4ca9308f0 100644 --- a/sse/Cargo.toml +++ b/sse/Cargo.toml @@ -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" diff --git a/static-compiled/Cargo.toml b/static-compiled/Cargo.toml index 26d9bfaa6c..82289d0f62 100644 --- a/static-compiled/Cargo.toml +++ b/static-compiled/Cargo.toml @@ -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" } diff --git a/static/Cargo.toml b/static/Cargo.toml index 0009dcf200..d3e40bf1b2 100644 --- a/static/Cargo.toml +++ b/static/Cargo.toml @@ -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"] } diff --git a/tera/Cargo.toml b/tera/Cargo.toml index 1146326a9e..9bc59994e0 100644 --- a/tera/Cargo.toml +++ b/tera/Cargo.toml @@ -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" } diff --git a/testing/CHANGELOG.md b/testing/CHANGELOG.md index 1ddcc577f6..1a661963f7 100644 --- a/testing/CHANGELOG.md +++ b/testing/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0](https://github.com/trillium-rs/trillium/compare/trillium-testing-v0.6.1...trillium-testing-v0.7.0) - 2024-05-30 + +### Added +- *(api)* [**breaking**] make IoErrors respond with BadRequest +- deprecate set_state for insert_state + +### Other +- release + ## [0.6.1](https://github.com/trillium-rs/trillium/compare/trillium-testing-v0.6.0...trillium-testing-v0.6.1) - 2024-04-07 ### Added diff --git a/testing/Cargo.toml b/testing/Cargo.toml index b0dda2c357..86ed2cd4b9 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trillium-testing" -version = "0.6.1" +version = "0.7.0" authors = ["Jacob Rothstein "] edition = "2021" description = "testing library for trillium applications" @@ -23,8 +23,8 @@ default = [] async-dup = "1.2.4" futures-lite = "2.1.0" portpicker = "0.1.1" -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-server-common = { path = "../server-common", version = "0.5.2" } cfg-if = "1.0.0" url = "2.5.0" diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index c41fd527fd..e2d1a34143 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -14,8 +14,8 @@ categories = ["web-programming::http-server", "web-programming"] async-compat = "0.2.3" log = "0.4.20" tokio-stream = { version = "0.1.14", features = ["net"] } -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" } diff --git a/trillium/CHANGELOG.md b/trillium/CHANGELOG.md index b696554578..e9bfa256b2 100644 --- a/trillium/CHANGELOG.md +++ b/trillium/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.20](https://github.com/trillium-rs/trillium/compare/trillium-v0.2.19...trillium-v0.2.20) - 2024-05-30 + +### Added +- deprecate set_state for insert_state + ## [0.2.19](https://github.com/trillium-rs/trillium/compare/trillium-v0.2.18...trillium-v0.2.19) - 2024-04-07 ### Added diff --git a/trillium/Cargo.toml b/trillium/Cargo.toml index e98f6a4a8e..ec3c03c6b3 100644 --- a/trillium/Cargo.toml +++ b/trillium/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trillium" -version = "0.2.19" +version = "0.2.20" authors = ["Jacob Rothstein "] edition = "2021" description = "a modular toolkit for building async web apps" @@ -19,7 +19,7 @@ serde = ["trillium-http/serde"] [dependencies] async-trait = "0.1.75" log = "0.4.20" -trillium-http = { path = "../http", version = "0.3.16" } +trillium-http = { path = "../http", version = "0.3.17" } [dev-dependencies] futures-lite = "2.1.0" diff --git a/websockets/CHANGELOG.md b/websockets/CHANGELOG.md index cd13d4ed1f..5828b252a0 100644 --- a/websockets/CHANGELOG.md +++ b/websockets/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.6](https://github.com/trillium-rs/trillium/compare/trillium-websockets-v0.6.5...trillium-websockets-v0.6.6) - 2024-05-30 + +### Added +- deprecate set_state for insert_state + ## [0.6.5](https://github.com/trillium-rs/trillium/compare/trillium-websockets-v0.6.4...trillium-websockets-v0.6.5) - 2024-04-07 ### Added diff --git a/websockets/Cargo.toml b/websockets/Cargo.toml index a54726b86e..dfd0d11d20 100644 --- a/websockets/Cargo.toml +++ b/websockets/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trillium-websockets" -version = "0.6.5" +version = "0.6.6" authors = ["Jacob Rothstein "] edition = "2021" description = "websocket support for trillium.rs" @@ -30,8 +30,8 @@ serde_json = { version = "1.0.108", optional = true } sha-1 = "0.10.1" stopper = "0.2.3" thiserror = "1.0.52" -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" } [dev-dependencies] async-tungstenite = { version = "0.25.0", default-features = false, features = ["handshake"] }