From c0de5b2acddd7c0fff479eef98cd02977bb66bd8 Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Sun, 19 Jan 2025 00:04:05 +0000 Subject: [PATCH] Bump version --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c4c328c --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +## 0.1.1 + +- Properly handle package names with hyphens—thanks [0xalpharush](https://github.com/0xalpharush) for reporting the bug and submitting the fix ([#37](https://github.com/trailofbits/cargo-line-test/pull/37)) +- Check that line-test.db/packages exists when trying to read line-test.db ([ebe2fb1](https://github.com/trailofbits/cargo-line-test/commit/ebe2fb110eaeb2255d919c838edcc078a0147467)) + +## 0.1.0 + +- Initial release diff --git a/Cargo.lock b/Cargo.lock index 7981df4..cb1e850 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,7 +120,7 @@ dependencies = [ [[package]] name = "cargo-line-test" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 25083c7..fbe9589 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-line-test" -version = "0.1.0" +version = "0.1.1" authors = ["Samuel Moelius "] description = "Run tests by the lines they exercise" edition = "2021"