Skip to content

Commit

Permalink
Version 0.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Anders429 committed Dec 27, 2024
1 parent 01af280 commit 2f6f85c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gba_test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.3.0 - 2024-12-27
### Added
- Support for returning `Result<T, E>` from tests, as well as other custom return types.
- `ShouldPanic::YesWithMessage(message)` to indicate that a panic message should contain the given substring.
Expand Down
4 changes: 2 additions & 2 deletions gba_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion gba_test_macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.3.0 - 2024-12-27
### Added
- Support for returning `Result<T, E>` from tests, as well as other custom return types.
- Expected messages for `#[should_panic]` attributes.
Expand Down
2 changes: 1 addition & 1 deletion gba_test_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion gba_test_macros/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 2f6f85c

Please sign in to comment.