diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 414d182..c36c501 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). <!-- next-header --> ## [Unreleased] - ReleaseDate + +## [0.16.0] - 2021-08-31 - Fix serving files with backslashes in their names [#578](https://github.com/svenstaro/miniserve/pull/578) (thanks @Jikstra) - Fix behavior of downloading symlinks by upgrading to actix-web 4 [#582](https://github.com/svenstaro/miniserve/pull/582) [#462](https://github.com/svenstaro/miniserve/issues/462) (thanks @aliemjay) - List directory if index file not found [#583](https://github.com/svenstaro/miniserve/pull/583) [#275](https://github.com/svenstaro/miniserve/pull/583) (thanks @aliemjay) @@ -109,7 +111,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Some theme related bug fixes (thanks @boastful-squirrel) <!-- next-url --> -[Unreleased]: https://github.com/svenstaro/miniserve/compare/v0.15.0...HEAD +[Unreleased]: https://github.com/svenstaro/miniserve/compare/v0.16.0...HEAD +[0.16.0]: https://github.com/svenstaro/miniserve/compare/v0.15.0...v0.16.0 [0.15.0]: https://github.com/svenstaro/miniserve/compare/v0.14.0...v0.15.0 [0.14.0]: https://github.com/svenstaro/miniserve/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/svenstaro/miniserve/compare/v0.12.1...v0.13.0 @@ -1393,7 +1393,7 @@ dependencies = [ [[package]] name = "miniserve" -version = "0.15.1-alpha.0" +version = "0.16.0" dependencies = [ "actix-files", "actix-multipart", @@ -1,6 +1,6 @@ [package] name = "miniserve" -version = "0.15.1-alpha.0" +version = "0.16.0" description = "For when you really just want to serve some files over HTTP right now!" authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>", "Boastful Squirrel <boastful.squirrel@gmail.com>"] repository = "https://github.com/svenstaro/miniserve" @@ -79,7 +79,7 @@ Sometimes this is just a more practical and quick way than doing things properly ## Usage - miniserve 0.15.1-alpha.0 + miniserve 0.16.0 Sven-Hendrik Haase <svenstaro@gmail.com>, Boastful Squirrel <boastful.squirrel@gmail.com> |