From 863a8a053c3ded2863b032fbe024c7a74bfa68d0 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 21 Jan 2022 23:47:35 +0900 Subject: [PATCH] Release 0.1.16 --- CHANGELOG.md | 13 ++++++++++++- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 637955ed..0eff9525 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,16 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] +## [0.1.16] - 2022-01-21 + +- Alleviate an issue where "File name or extension is too long" error occurs in Windows. ([#126](https://github.com/taiki-e/cargo-llvm-cov/pull/126), thanks @aganders3) + +- Re-enable multiple values for `--package` and `--exclude`. ([#127](https://github.com/taiki-e/cargo-llvm-cov/pull/127), thanks @aganders3) + + This behavior was unintentionally enabled in older versions and disabled in recent versions. + + We will support this again in 0.1.x for compatibility, but will remove it in 0.2.x. + - Distribute prebuilt binaries for aarch64 Linux (gnu and musl). ## [0.1.15] - 2022-01-06 @@ -194,7 +204,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.15...HEAD +[Unreleased]: https://github.com/taiki-e/cargo-llvm-cov/compare/v0.1.16...HEAD +[0.1.16]: https://github.com/taiki-e/cargo-llvm-cov/compare/v0.1.15...v0.1.16 [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 diff --git a/Cargo.toml b/Cargo.toml index 38391f95..0b36add2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-llvm-cov" -version = "0.1.15" +version = "0.1.16" edition = "2018" rust-version = "1.54" license = "Apache-2.0 OR MIT"