From 378e9c35e407fd918862ae5ff992e5a9a5b37af7 Mon Sep 17 00:00:00 2001 From: Jose Quintana Date: Mon, 17 Oct 2022 00:42:51 +0200 Subject: [PATCH] v2.13.1 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fc9e15..d7c1753 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 _**Note:** See changelog for v1 under the [1.x](https://github.com/joseluisq/static-web-server/blob/1.x/CHANGELOG.md) branch._ +## v2.13.1 - 2022-10-17 + +__Fixes__ + +- [41dd5c6](https://github.com/joseluisq/static-web-server/commit/41dd5c6) Bugfix/security dependency updates including cxx and proc-macro2 crates. +- [abef785](https://github.com/joseluisq/static-web-server/commit/abef785) Directory listing JSON syntax error when requesting for an empty folder. + +__Refactorings__ + +- [d1b72fd](https://github.com/joseluisq/static-web-server/commit/d1b72fd) Significant `~58%` performance boost for serving static files and `~10%` *(CPU)* / `~52%` *(RAM)* less resource utilization. PR [#153](https://github.com/joseluisq/static-web-server/issues/153) resolves [#146](https://github.com/joseluisq/static-web-server/issues/146) reported by [@jonashaag](https://github.com/jonashaag). + ## v2.13.0 - 2022-10-12 __Fixes__ diff --git a/Cargo.lock b/Cargo.lock index c8be95d..6cb0f85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1111,7 +1111,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "static-web-server" -version = "2.13.0" +version = "2.13.1" dependencies = [ "anyhow", "async-compression", diff --git a/Cargo.toml b/Cargo.toml index 8237830..92344cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "static-web-server" -version = "2.13.0" +version = "2.13.1" authors = ["Jose Quintana "] license = "MIT OR Apache-2.0" description = "A blazing fast and asynchronous web server for static files-serving." -- libgit2 1.7.2