diff --git a/CHANGELOG.md b/CHANGELOG.md index 49adb95..f3fa22d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v0.2.2 - 2024-01-24 + +Fix: docker images is broken. + # v0.2.1 - 2023-10-30 Update Dependencies. diff --git a/Cargo.lock b/Cargo.lock index 867000b..45cd146 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1352,7 +1352,7 @@ dependencies = [ [[package]] name = "rsb" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "async-process", diff --git a/Cargo.toml b/Cargo.toml index 8dffc74..372abe6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsb" -version = "0.2.1" +version = "0.2.2" edition = "2021" authors = ["MichaelFu "] license = "MIT" diff --git a/README.md b/README.md index e93d9b0..d54ea98 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://github.com/gamelife1314/rsb/workflows/CI/badge.svg)](https://github.com/gamelife1314/rsb/actions) [![License MIT](https://img.shields.io/badge/liccense-MIT-green?style=flat&logo=PowerShell)](https://github.com/gamelife1314/rsb/blob/main/LICENSE) [![Codecov](https://codecov.io/gh/gamelife1314/rsb/branch/main/graph/badge.svg)](https://app.codecov.io/gh/gamelife1314/rsb) -[![Crates.io](https://img.shields.io/badge/crates.io-v0.2.1-blue)](https://crates.io/crates/rsb) +[![Crates.io](https://img.shields.io/badge/crates.io-v0.2.2-blue)](https://crates.io/crates/rsb) `rsb` is a http server benchmark tool written in rust. The development of this tool is mainly inspired by the [`bombardier`](https://github.com/codesenberg/bombardier) project, and I would like to thank the author for his diff --git a/docker/Dockerfile b/docker/Dockerfile index 2b00e5f..8361299 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -10,11 +10,11 @@ COPY . . RUN cargo install --path . -FROM debian:bullseye-slim +FROM ubuntu #RUN sed -i 's@deb.debian.org@repo.huaweicloud.com@g' /etc/apt/sources.list && apt update \ # && apt-get install -y apt-transport-https ca-certificates - +# #RUN apt-get update && apt-get install -y extra-runtime-dependencies && rm -rf /var/lib/apt/lists/* COPY --from=build /usr/local/cargo/bin/rsb /usr/local/bin/rsb