From 30efe472911693470cca4a8491ac3abea73ac423 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 7 Jan 2022 02:57:55 +0900 Subject: [PATCH] Release 0.1.15 --- CHANGELOG.md | 7 +++++-- Cargo.toml | 2 +- tools/publish.sh | 3 +++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 509c1373..b6666c87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,9 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] -- Fix bug in `show-env` subcommand. +## [0.1.15] - 2022-01-06 + +- Fix bug in `show-env` subcommand. ([#121](https://github.com/taiki-e/cargo-llvm-cov/pull/121)) ## [0.1.14] - 2022-01-06 @@ -190,7 +192,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com Initial release -[Unreleased]: https://github.com/taiki-e/cargo-llvm-cov/compare/v0.1.14...HEAD +[Unreleased]: https://github.com/taiki-e/cargo-llvm-cov/compare/v0.1.15...HEAD +[0.1.15]: https://github.com/taiki-e/cargo-llvm-cov/compare/v0.1.14...v0.1.15 [0.1.14]: https://github.com/taiki-e/cargo-llvm-cov/compare/v0.1.13...v0.1.14 [0.1.13]: https://github.com/taiki-e/cargo-llvm-cov/compare/v0.1.12...v0.1.13 [0.1.12]: https://github.com/taiki-e/cargo-llvm-cov/compare/v0.1.11...v0.1.12 diff --git a/Cargo.toml b/Cargo.toml index 168987e7..38391f95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-llvm-cov" -version = "0.1.14" +version = "0.1.15" edition = "2018" rust-version = "1.54" license = "Apache-2.0 OR MIT" diff --git a/tools/publish.sh b/tools/publish.sh index f1c02c45..7f82f281 100755 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -51,6 +51,9 @@ echo "============== CHANGELOG ==============" parse-changelog CHANGELOG.md "${version}" echo "=======================================" +if ! grep /dev/null; then + bail "not found section '[${version}] - $(date --utc '+%Y-%m-%d')' in CHANGELOG.md" +fi if ! grep /dev/null; then bail "not found link to [${version}] in CHANGELOG.md" fi