diff --git a/CHANGELOG.md b/CHANGELOG.md index 61a706b..f226627 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate + +## [0.21.0] - 2022-09-15 - Fix bug where static files would be served incorrectly when using `--random-route` [#835](https://github.com/svenstaro/miniserve/pull/835) (thanks @solarknight) - Add `--readme` to render the README in the current directory after the file listing [#860](https://github.com/svenstaro/miniserve/pull/860) (thanks @Atreyagaurav) - Add more architectures (and also additional container images) @@ -151,7 +153,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.20.0...HEAD +[Unreleased]: https://github.com/svenstaro/miniserve/compare/v0.21.0...HEAD +[0.21.0]: https://github.com/svenstaro/miniserve/compare/v0.20.0...v0.21.0 [0.20.0]: https://github.com/svenstaro/miniserve/compare/v0.19.5...v0.20.0 [0.19.5]: https://github.com/svenstaro/miniserve/compare/v0.19.4...v0.19.5 [0.19.4]: https://github.com/svenstaro/miniserve/compare/v0.19.3...v0.19.4 diff --git a/Cargo.lock b/Cargo.lock index 174d5bc..98e68cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1513,7 +1513,7 @@ dependencies = [ [[package]] name = "miniserve" -version = "0.20.0" +version = "0.21.0" dependencies = [ "actix-files", "actix-multipart", diff --git a/Cargo.toml b/Cargo.toml index de73987..70773ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniserve" -version = "0.20.0" +version = "0.21.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" diff --git a/README.md b/README.md index a44cdae..c202566 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ Some mobile browsers like Firefox on Android will offer to open the camera app w ## Usage - miniserve 0.20.0 + miniserve 0.21.0 Sven-Hendrik Haase , Boastful Squirrel