From 52b91623e4be60d705fb8a511275f1f96a24e50d Mon Sep 17 00:00:00 2001 From: Jose Quintana Date: Tue, 8 Feb 2022 22:27:49 +0100 Subject: [PATCH] v2.6.0-beta.1 --- .github/workflows/release.yml | 4 ++-- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b6b8a14..a60bb67 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -173,14 +173,14 @@ jobs: run: | docker run --rm -v "$PWD/target:/target:Z" \ rustembedded/cross:armv7-unknown-linux-musleabihf \ - arm-linux-gnueabihf-strip /target/armv7-unknown-linux-musleabihf/release/static-web-server + arm-linux-musleabihf-strip /target/armv7-unknown-linux-musleabihf/release/static-web-server - name: Strip release binary (linux-musl-armv6) if: matrix.build == 'linux-musl-armv6' run: | docker run --rm -v "$PWD/target:/target:Z" \ rustembedded/cross:arm-unknown-linux-musleabihf \ - arm-linux-gnueabihf-strip /target/arm-unknown-linux-musleabihf/release/static-web-server + arm-linux-musleabihf-strip /target/arm-unknown-linux-musleabihf/release/static-web-server - name: Strip release binary (linux-gnu-arm64) if: matrix.build == 'linux-gnu-arm64' diff --git a/CHANGELOG.md b/CHANGELOG.md index 42c7214..9f188cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ 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.6.0-beta.1 - 2022-02-08 + +__Fixes__ + +- [fb84c0b](https://github.com/joseluisq/static-web-server/commit/fb84c0b) Bugfix dependency updates including httparse, futures and other crates. + +__Features__ + +- [c2ae6a5](https://github.com/joseluisq/static-web-server/commit/c2ae6a5) Multi-arch Docker images. PR [#82](https://github.com/joseluisq/static-web-server/pull/82) resolves [#54](https://github.com/joseluisq/static-web-server/issues/54). + - New `armv7-unknown-linux-musleabihf` (armv7) and `arm-unknown-linux-musleabihf` (armv6) binary targets. + - New Docker images for `linux/arm64`, `linux/386`, `linux/arm/v7` and `linux/arm/v6` platforms. + ## v2.5.0 - 2022-02-04 __Fixes__ diff --git a/Cargo.lock b/Cargo.lock index df7d064..59413db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -817,7 +817,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "static-web-server" -version = "2.5.0" +version = "2.6.0-beta.1" dependencies = [ "anyhow", "async-compression", diff --git a/Cargo.toml b/Cargo.toml index 6481abf..f611337 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "static-web-server" -version = "2.5.0" +version = "2.6.0-beta.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