diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fedcd11..3fe5e7f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.2.1] - 2021-09-07 + #### Bug Fixes - Show empty-commit errors as messages for draft commits @@ -140,7 +142,8 @@ Ignore, just testing Github Actions -[Unreleased]: https://github.com/crate-ci/committed/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/crate-ci/committed/compare/v0.2.1...HEAD +[0.2.1]: https://github.com/crate-ci/committed/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/crate-ci/committed/compare/v0.1.26...v0.2.0 [0.1.26]: https://github.com/crate-ci/committed/compare/v0.1.25...v0.1.26 [0.1.25]: https://github.com/crate-ci/committed/compare/v0.1.24...v0.1.25 diff --git a/Cargo.lock b/Cargo.lock index a6f74043..508971cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -132,7 +132,7 @@ dependencies = [ [[package]] name = "committed" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 81bcaaa6..b94a59d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "committed" -version = "0.2.0" +version = "0.2.1" description = "Nitpicking commit history since beabf39" authors = ["Ed Page "] license = "MIT OR Apache-2.0" diff --git a/Dockerfile b/Dockerfile index 2ef45a67..0555a8f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:20.04 -ARG VERSION=0.2.0 +ARG VERSION=0.2.1 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 352087e8..ed109aaa 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:20.04 -ARG VERSION=0.2.0 +ARG VERSION=0.2.1 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 && \