Skip to content

Commit

Permalink
Release 0.34.0 (#2715)
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 -->

-

## 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 26, 2024
1 parent 63447bb commit d6976d4
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 14 deletions.
3 changes: 2 additions & 1 deletion 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.34.0] - 2024-11-26

### Forge

#### Added
Expand All @@ -25,7 +27,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- You can skip `--name` flag when using `account import` - a default name will be generated.
- Addresses outputted when calling `sncast account create`, `sncast deploy` and `sncast declare` are now padded to 64 characters length and prefixed with `0x0`
- Globally available configuration to store profiles to share between projects.
- Missing fields in `show-config` command, `block_explorer` and `show_explorer_links`.

#### Changed

Expand Down
10 changes: 5 additions & 5 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 @@ -18,7 +18,7 @@ members = [
]

[workspace.package]
version = "0.33.0"
version = "0.34.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.33.0, it might result in unexpected behaviour
[WARNING] Package sncast_std version does not meet the recommended version requirement =0.34.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,6 +1,6 @@
[package]
name = "snforge_scarb_plugin"
version = "0.33.1"
version = "0.34.0"
edition = "2024_07"

[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.33.0"
version = "0.34.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.33.0"
version = "0.34.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.33.0"
version = "0.34.0"

[[package]]
name = "snforge_std"
version = "0.33.0"
version = "0.34.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.33.0"
version = "0.34.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 d6976d4

Please sign in to comment.