diff --git a/Cargo.lock b/Cargo.lock index 66492bc..3f23d18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -22,7 +22,7 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "terminal-trx" -version = "0.2.0" +version = "0.2.1" dependencies = [ "cfg-if", "libc", diff --git a/Cargo.toml b/Cargo.toml index 966cdd3..3317983 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ readme = "readme.md" repository = "https://github.com/bash/terminal-trx" categories = ["command-line-interface"] license = "MIT OR Apache-2.0" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.70.0" exclude = [".github", ".gitignore", "*.sh"] diff --git a/changelog.md b/changelog.md index a66c4cf..612ab4d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,9 @@ # Changelog +## 0.2.1 +* Tests can now be run directly from the packaged sources instead + of relying on in-tree sources. +* Remove private `__test_unsupported` feature. + ## 0.2.0 * Breaking: `lock()` now ignores poisoning errors, removing the need for `PoisonError`.