diff --git a/CHANGELOG.md b/CHANGELOG.md index 36caca799..4b2f62b69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate + +## [0.24.0] - 2023-07-06 - Fix ANSI color codes are printed when not a tty [#1095](https://github.com/svenstaro/miniserve/pull/1095) - Allow parameters to be provided via environment variables [#1160](https://github.com/svenstaro/miniserve/pull/1160) @@ -176,7 +178,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Some theme related bug fixes (thanks @boastful-squirrel) -[Unreleased]: https://github.com/svenstaro/miniserve/compare/v0.23.2...HEAD +[Unreleased]: https://github.com/svenstaro/miniserve/compare/v0.24.0...HEAD +[0.24.0]: https://github.com/svenstaro/miniserve/compare/v0.23.2...v0.24.0 [0.23.2]: https://github.com/svenstaro/miniserve/compare/v0.23.1...v0.23.2 [0.23.1]: https://github.com/svenstaro/miniserve/compare/v0.23.0...v0.23.1 [0.23.0]: https://github.com/svenstaro/miniserve/compare/v0.22.0...v0.23.0 diff --git a/Cargo.lock b/Cargo.lock index ae09ebfcb..a7f3c530f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1577,7 +1577,7 @@ dependencies = [ [[package]] name = "miniserve" -version = "0.23.2" +version = "0.24.0" dependencies = [ "actix-files", "actix-multipart", diff --git a/Cargo.toml b/Cargo.toml index 46776b83c..4e5d51e57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniserve" -version = "0.23.2" +version = "0.24.0" description = "For when you really just want to serve some files over HTTP right now!" authors = ["Sven-Hendrik Haase ", "Boastful Squirrel "] repository = "https://github.com/svenstaro/miniserve"