diff --git a/CHANGELOG.md b/CHANGELOG.md index f9b69c6f..fcc9550e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.1.25] - 2021-07-02 + #### Bug Fixes - Be less noisy in Github Action @@ -126,7 +128,8 @@ Ignore, just testing Github Actions -[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v0.1.24...HEAD +[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v0.1.25...HEAD +[0.1.25]: https://github.com/assert-rs/predicates-rs/compare/v0.1.24...v0.1.25 [0.1.24]: https://github.com/assert-rs/predicates-rs/compare/v0.1.23...v0.1.24 [0.1.23]: https://github.com/assert-rs/predicates-rs/compare/v0.1.22...v0.1.23 [0.1.22]: https://github.com/assert-rs/predicates-rs/compare/v0.1.21...v0.1.22 diff --git a/Cargo.lock b/Cargo.lock index 70534070..5eb39110 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,7 +114,7 @@ dependencies = [ [[package]] name = "committed" -version = "0.1.24" +version = "0.1.25" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index eb55662d..7aaf9739 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "committed" -version = "0.1.24" +version = "0.1.25" authors = ["Ed Page "] description = "Nitpicking commit history since beabf39" repository = "https://github.com/crate-ci/committed" diff --git a/Dockerfile b/Dockerfile index 2d2c8607..e4b234a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:20.04 -ARG VERSION=0.1.24 +ARG VERSION=0.1.25 ENV VERSION=${VERSION} RUN apt-get update && apt-get install -y wget RUN wget https://github.com/crate-ci/committed/releases/download/v${VERSION}/committed-v${VERSION}-x86_64-unknown-linux-musl.tar.gz && \ diff --git a/docker/Dockerfile b/docker/Dockerfile index 898ef35f..a90a71de 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:20.04 -ARG VERSION=0.1.24 +ARG VERSION=0.1.25 ENV VERSION=${VERSION} RUN apt-get update && apt-get install -y wget git RUN wget https://github.com/crate-ci/committed/releases/download/v${VERSION}/committed-v${VERSION}-x86_64-unknown-linux-musl.tar.gz && \