From 2f6f85cccdaed11d480b4c26fa4d7b66a0a187b6 Mon Sep 17 00:00:00 2001 From: Anders429 Date: Fri, 27 Dec 2024 13:26:51 -0700 Subject: [PATCH] Version 0.3.0. --- README.md | 2 +- gba_test/CHANGELOG.md | 2 +- gba_test/Cargo.toml | 4 ++-- gba_test_macros/CHANGELOG.md | 2 +- gba_test_macros/Cargo.toml | 2 +- gba_test_macros/README.md | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b09d185..8a1829b 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ version = "0.1.0" edition = "2021" [dev-dependencies] -gba_test = "0.2.0" +gba_test = "0.3.0" ``` ### Running the test runner diff --git a/gba_test/CHANGELOG.md b/gba_test/CHANGELOG.md index c67bea6..7efdf1d 100644 --- a/gba_test/CHANGELOG.md +++ b/gba_test/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.3.0 - 2024-12-27 ### Added - Support for returning `Result` from tests, as well as other custom return types. - `ShouldPanic::YesWithMessage(message)` to indicate that a panic message should contain the given substring. diff --git a/gba_test/Cargo.toml b/gba_test/Cargo.toml index 15f6734..f0894bd 100644 --- a/gba_test/Cargo.toml +++ b/gba_test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gba_test" -version = "0.2.0" +version = "0.3.0" authors = ["Anders Evensen"] edition = "2021" license = "MIT OR Apache-2.0" @@ -25,7 +25,7 @@ debug = true lto = true [dependencies] -gba_test_macros = {version = "0.2.0", path = "../gba_test_macros/", optional = true} +gba_test_macros = {version = "0.3.0", path = "../gba_test_macros/", optional = true} log = {version = "0.4.20", optional = true} [dev-dependencies] diff --git a/gba_test_macros/CHANGELOG.md b/gba_test_macros/CHANGELOG.md index 26e7c5c..7be2b22 100644 --- a/gba_test_macros/CHANGELOG.md +++ b/gba_test_macros/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.3.0 - 2024-12-27 ### Added - Support for returning `Result` from tests, as well as other custom return types. - Expected messages for `#[should_panic]` attributes. diff --git a/gba_test_macros/Cargo.toml b/gba_test_macros/Cargo.toml index 0496173..9e4b4aa 100644 --- a/gba_test_macros/Cargo.toml +++ b/gba_test_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gba_test_macros" -version = "0.2.0" +version = "0.3.0" authors = ["Anders Evensen"] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/gba_test_macros/README.md b/gba_test_macros/README.md index 2e64fd1..bd65510 100644 --- a/gba_test_macros/README.md +++ b/gba_test_macros/README.md @@ -14,7 +14,7 @@ simply use `gba_test` with the `macros` feature enabled by specifying the follow ``` [dependencies] -gba_test = {version = "0.2.0", features = ["macros"]} +gba_test = {version = "0.3.0", features = ["macros"]} ``` `gba_test`'s `macros` feature is enabled by default.