v2.6.0-beta.1
Diff
.github/workflows/release.yml | 4 ++--
CHANGELOG.md | 12 ++++++++++++
Cargo.lock | 2 +-
Cargo.toml | 2 +-
4 files changed, 16 insertions(+), 4 deletions(-)
@@ -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'
@@ -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__
@@ -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",
@@ -1,6 +1,6 @@
[package]
name = "static-web-server"
version = "2.5.0"
version = "2.6.0-beta.1"
authors = ["Jose Quintana <https://git.io/joseluisq>"]
license = "MIT OR Apache-2.0"
description = "A blazing fast and asynchronous web server for static files-serving."