Skip to content

Commit

Permalink
Release 0.1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jan 6, 2022
1 parent 78f981c commit 30efe47
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
3 changes: 3 additions & 0 deletions tools/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ echo "============== CHANGELOG =============="
parse-changelog CHANGELOG.md "${version}"
echo "======================================="

if ! grep <CHANGELOG.md -E "^## \\[${version//./\\.}\\] - $(date --utc '+%Y-%m-%d')$" >/dev/null; then
bail "not found section '[${version}] - $(date --utc '+%Y-%m-%d')' in CHANGELOG.md"
fi
if ! grep <CHANGELOG.md -E "^\\[${version//./\\.}\\]: " >/dev/null; then
bail "not found link to [${version}] in CHANGELOG.md"
fi
Expand Down

0 comments on commit 30efe47

Please sign in to comment.