diff --git a/smol/CHANGELOG.md b/smol/CHANGELOG.md index 86f6b66e60..b22e12ff95 100644 --- a/smol/CHANGELOG.md +++ b/smol/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/trillium-rs/trillium/compare/trillium-smol-v0.4.0...trillium-smol-v0.4.1) - 2024-04-12 + +### Added +- *(smol)* enable the async-io feature on async-global-executor + +### Other +- release +- release + ## [0.4.0](https://github.com/trillium-rs/trillium/compare/trillium-smol-v0.3.3...trillium-smol-v0.4.0) - 2024-04-04 ### Added diff --git a/smol/Cargo.toml b/smol/Cargo.toml index c06f2117ae..b6da8b8138 100644 --- a/smol/Cargo.toml +++ b/smol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trillium-smol" -version = "0.4.0" +version = "0.4.1" authors = ["Jacob Rothstein "] edition = "2021" description = "smol runtime adapter for trillium.rs" diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 36466c1df6..b0dda2c357 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -36,7 +36,7 @@ fastrand = "2.0.1" [dependencies.trillium-smol] path = "../smol" -version = "0.4.0" +version = "0.4.1" optional = true [dependencies.trillium-tokio]