Skip to content

Commit 281bd6b

Browse files
authored
Release 0.35.0 (#2777)
<!-- Reference any GitHub issues resolved by this PR --> Closes #2524 ## Introduced changes <!-- A brief description of the changes --> - Removed hardcoded package version from test ## Checklist <!-- Make sure all of these are complete --> - [x] Linked relevant issue - [x] Updated relevant documentation - [x] Added relevant tests - [x] Performed self-review of the code - [x] Added changes to `CHANGELOG.md`
1 parent ebe9348 commit 281bd6b

File tree

9 files changed

+25
-18
lines changed

9 files changed

+25
-18
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 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.35.0] - 2024-12-13
11+
1012
### Forge
1113

1214
#### Added
@@ -19,15 +21,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1921

2022
- `snforge_scarb_plugin` will now also emit warnings when errors occur
2123

24+
#### Deprecated
25+
26+
- `snforge init` command
27+
2228
### Cast
2329

24-
#### Deprecated
30+
#### Changed
2531

26-
- `--fee-token` and `--version` flags are now optional, `strk` and `v3` will be used by default
32+
- `--version` flag is now optional and `v3` will be used by default
2733

2834
#### Deprecated
2935

30-
- `snforge init` command has been deprecated
36+
- `--fee-token` flag - `strk` will be used by default
3137

3238
## [0.34.0] - 2024-11-26
3339

Cargo.lock

Lines changed: 5 additions & 5 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
@@ -18,7 +18,7 @@ members = [
1818
]
1919

2020
[workspace.package]
21-
version = "0.34.0"
21+
version = "0.35.0"
2222
edition = "2021"
2323
repository = "https://github.com/foundry-rs/starknet-foundry"
2424
license = "MIT"

crates/sncast/tests/e2e/script/general.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::helpers::fixtures::{
66
};
77
use crate::helpers::runner::runner;
88
use camino::Utf8PathBuf;
9-
use indoc::indoc;
9+
use indoc::{formatdoc, indoc};
1010
use shared::test_utils::output_assert::assert_stderr_contains;
1111
use sncast::get_default_state_file_name;
1212
use sncast::state::state_file::{read_txs_from_state_file, ScriptTransactionStatus};
@@ -132,10 +132,11 @@ async fn test_incompatible_sncast_std_version() {
132132
];
133133

134134
let snapbox = runner(&args).current_dir(script_dir.path());
135+
let version = env!("CARGO_PKG_VERSION");
135136

136-
snapbox.assert().success().stdout_matches(indoc! {r"
137+
snapbox.assert().success().stdout_matches(formatdoc! {r"
137138
...
138-
[WARNING] Package sncast_std version does not meet the recommended version requirement =0.34.0, it might result in unexpected behaviour
139+
[WARNING] Package sncast_std version does not meet the recommended version requirement ={version}, it might result in unexpected behaviour
139140
...
140141
"});
141142
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snforge_scarb_plugin"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
edition = "2024_07"
55

66
[cairo-plugin]

sncast_std/Scarb.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ version = 1
33

44
[[package]]
55
name = "sncast_std"
6-
version = "0.34.0"
6+
version = "0.35.0"

sncast_std/Scarb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sncast_std"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
edition = "2023_11"
55
description = "Library used for writing deployment scripts in Cairo"
66
homepage = "https://foundry-rs.github.io/starknet-foundry/starknet/script.html"

snforge_std/Scarb.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ version = 1
33

44
[[package]]
55
name = "snforge_scarb_plugin"
6-
version = "0.34.0"
6+
version = "0.35.0"
77

88
[[package]]
99
name = "snforge_std"
10-
version = "0.34.0"
10+
version = "0.35.0"
1111
dependencies = [
1212
"snforge_scarb_plugin",
1313
]

snforge_std/Scarb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snforge_std"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
edition = "2024_07"
55
description = "Cairo testing library"
66
documentation = "https://foundry-rs.github.io/starknet-foundry/appendix/snforge-library.html"

0 commit comments

Comments
 (0)