Skip to content

Commit

Permalink
Release 0.33.0 (#2642)
Browse files Browse the repository at this point in the history
<!-- Reference any GitHub issues resolved by this PR -->

Closes #

## Introduced changes

<!-- A brief description of the changes -->

- Release 0.33.0

## 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`
  • Loading branch information
cptartur authored Nov 4, 2024
1 parent 758b3f8 commit e0de8d1
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 22 deletions.
14 changes: 4 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.33.0] - 2024-11-04

### Cast

#### Added

- You can now use numbers without quotes as inputs for calls in multicall config file.
- New `--arguments` flag to `call`, `invoke` and `deploy` for automatic conversion of Cairo expressions instead of serialized form.

### Forge

#### Fixed

- Calling contract functions via safe-dispatcher now returns an `Err` when attempting to invoke a non-existent entry point, instead of causing a panic.

#### Changed

- You can now pass arguments to `cairo-profiler` and `cairo-coverage`. Everything after `--` will be passed to underlying binary. E.g.
Expand All @@ -33,12 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Scarb features work with optimized compilation
- Custom test targets are now supported with optimized compilation

### Cast

#### Added

- New `--arguments` flag to `call`, `invoke` and `deploy` for automatic conversion of Cairo expressions instead of serialized form.
- Calling contract functions via safe-dispatcher now returns an `Err` when attempting to invoke a non-existent entry point, instead of causing a panic.

## [0.32.0] - 2024-10-16

Expand Down
8 changes: 4 additions & 4 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 @@ -17,7 +17,7 @@ members = [
]

[workspace.package]
version = "0.32.0"
version = "0.33.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 @@ -135,7 +135,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.32.0, it might result in unexpected behaviour
[WARNING] Package sncast_std version does not meet the recommended version requirement =0.33.0, it might result in unexpected behaviour
...
"});
}
Expand Down
2 changes: 1 addition & 1 deletion crates/snforge-scarb-plugin/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "snforge_scarb_plugin"
version = "0.32.0"
version = "0.33.0"

[cairo-plugin]
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.32.0"
version = "0.33.0"
2 changes: 1 addition & 1 deletion sncast_std/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sncast_std"
version = "0.32.0"
version = "0.33.0"
edition = "2023_11"
description = "Library used for writing deployment scripts in Cairo"
homepage = "https://foundry-rs.github.io/starknet-foundry/starknet/script.html"
Expand Down
4 changes: 2 additions & 2 deletions snforge_std/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ version = 1

[[package]]
name = "snforge_scarb_plugin"
version = "0.32.0"
version = "0.33.0"

[[package]]
name = "snforge_std"
version = "0.32.0"
version = "0.33.0"
dependencies = [
"snforge_scarb_plugin",
]
2 changes: 1 addition & 1 deletion snforge_std/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snforge_std"
version = "0.32.0"
version = "0.33.0"
edition = "2023_10"
description = "Cairo testing library"
documentation = "https://foundry-rs.github.io/starknet-foundry/appendix/snforge-library.html"
Expand Down

0 comments on commit e0de8d1

Please sign in to comment.