Skip to content

Commit

Permalink
v0.27.0 (#2330)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomek0123456789 authored Jul 24, 2024
1 parent 4f3e24f commit 2d99b7c
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 13 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.27.0] - 2024-07-24

### Forge

#### Changed
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ members = [
]

[workspace.package]
version = "0.26.0"
version = "0.27.0"
edition = "2021"
repository = "https://github.com/foundry-rs/starknet-foundry"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion crates/sncast/tests/e2e/script/general.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ async fn test_incompatible_sncast_std_version() {

snapbox.assert().success().stdout_matches(indoc! {r"
...
[WARNING] Package sncast_std version does not meet the recommended version requirement =0.26.0, it might result in unexpected behaviour
[WARNING] Package sncast_std version does not meet the recommended version requirement =0.27.0, it might result in unexpected behaviour
...
"});
}
Expand Down
8 changes: 4 additions & 4 deletions docs/src/getting-started/first-steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ Add the following line under `[dev-dependencies]` section in the `Scarb.toml` fi
# ...

[dev-dependencies]
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.26.0" }
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.27.0" }
```

Make sure that the version in `tag` matches `snforge`. You can check the currently installed version with

```shell
$ snforge --version
snforge 0.26.0
snforge 0.27.0
```

It is also possible to add this dependency
Expand All @@ -72,11 +72,11 @@ command.
$ scarb add snforge_std \
--dev \
--git https://github.com/foundry-rs/starknet-foundry.git \
--tag v0.26.0
--tag v0.27.0
```

Additionally, ensure that starknet-contract target is enabled in the `Scarb.toml` file.

```toml
# ...
[[target.starknet-contract]]
[[target.starknet-contract]]
2 changes: 1 addition & 1 deletion sncast_std/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ version = 1

[[package]]
name = "sncast_std"
version = "0.26.0"
version = "0.27.0"
2 changes: 1 addition & 1 deletion sncast_std/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[package]
name = "sncast_std"
version = "0.26.0"
version = "0.27.0"
edition = "2023_11"
2 changes: 1 addition & 1 deletion snforge_std/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ version = 1

[[package]]
name = "snforge_std"
version = "0.26.0"
version = "0.27.0"
2 changes: 1 addition & 1 deletion snforge_std/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[package]
name = "snforge_std"
version = "0.26.0"
version = "0.27.0"
edition = "2023_10"

0 comments on commit 2d99b7c

Please sign in to comment.