Skip to content

Commit 8586208

Browse files
authored
Release 0.46.0 (#3545)
<!-- Reference any GitHub issues resolved by this PR --> Closes #3322 ## Introduced changes <!-- A brief description of the changes --> - ## Checklist <!-- Make sure all of these are complete --> - [ ] Linked relevant issue - [ ] Updated relevant documentation - [ ] Added relevant tests - [ ] Performed self-review of the code - [ ] Added changes to `CHANGELOG.md`
1 parent 701d059 commit 8586208

File tree

13 files changed

+82
-91
lines changed

13 files changed

+82
-91
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.46.0] - 2025-07-09
11+
1012
### Forge
1113

1214
#### Added

Cargo.lock

Lines changed: 53 additions & 63 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ members = [
2222
exclude = ["crates/snforge-scarb-plugin"]
2323

2424
[workspace.package]
25-
version = "0.45.0"
25+
version = "0.46.0"
2626
edition = "2024"
2727
repository = "https://github.com/foundry-rs/starknet-foundry"
2828
license = "MIT"
Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

crates/forge/tests/e2e/running.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,6 @@ fn should_panic() {
917917
}
918918

919919
#[test]
920-
#[ignore = "TODO(#3322) restore the asserted message to be proper test output and not `ERROR` after there exists a previous plugin version compatible with changes from #3027"]
921920
fn incompatible_snforge_std_version_warning() {
922921
let temp = setup_package("steps");
923922
let manifest_path = temp.child("Scarb.toml");
@@ -926,8 +925,8 @@ fn incompatible_snforge_std_version_warning() {
926925
.unwrap()
927926
.parse::<DocumentMut>()
928927
.unwrap();
929-
scarb_toml["dev-dependencies"]["snforge_std"] = value("0.34.1");
930-
scarb_toml["dev-dependencies"]["snforge_scarb_plugin"] = value("0.34.1");
928+
scarb_toml["dev-dependencies"]["snforge_std"] = value("0.45.0");
929+
scarb_toml["dev-dependencies"]["snforge_scarb_plugin"] = value("0.45.0");
931930
manifest_path.write_str(&scarb_toml.to_string()).unwrap();
932931

933932
let output = test_runner(&temp).assert().failure();

0 commit comments

Comments
 (0)