Skip to content

Commit

Permalink
Release 0.38.0 (#2997)
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`

---------

Co-authored-by: Artur Michalek <artur.michalek@swmansion.com>
Co-authored-by: Artur Michałek <52135326+cptartur@users.noreply.github.com>
  • Loading branch information
3 people authored Feb 26, 2025
1 parent 94d4f59 commit 6b16f91
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 18 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Cast

#### Changed

- `--name` flag is now optional when using `account create` (default name is generated)
## [0.38.0] - 2025-02-25

### Forge

Expand All @@ -31,6 +27,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- `snforge clean-cache` command

### Cast

#### Changed

- `--name` flag is now optional when using `account create` (default name is generated)

## [0.37.0] - 2025-02-03

### Forge
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.37.0"
version = "0.38.0"
edition = "2024"
repository = "/~https://github.com/foundry-rs/starknet-foundry"
license = "MIT"
Expand Down
1 change: 1 addition & 0 deletions crates/forge/tests/e2e/running.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1170,6 +1170,7 @@ fn create_new_project_and_check_gitignore() {
let project_path = temp.join("project");

runner(&temp)
.env("DEV_DISABLE_SNFORGE_STD_DEPENDENCY", "true")
.args(["new", "--name", "test_name"])
.arg(&project_path)
.assert()
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.37.0"
version = "0.38.0"
edition = "2024_07"
include = ["target/scarb/cairo-plugin/"]

Expand Down
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.37.0"
version = "0.38.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.37.0"
version = "0.38.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.37.0"
version = "0.38.0"

[[package]]
name = "snforge_std"
version = "0.37.0"
version = "0.38.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.37.0"
version = "0.38.0"
edition = "2024_07"
description = "Cairo testing library"
documentation = "https://foundry-rs.github.io/starknet-foundry/appendix/snforge-library.html"
Expand Down
2 changes: 1 addition & 1 deletion snforge_std/src/fuzzable.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ impl FuzzableFelt of Fuzzable<felt252> {

mod nums {
use super::{Fuzzable, generate_arg, Debug};
use core::num::traits::{Bounded, One, Zero};
use core::num::traits::{Bounded, Zero};

pub impl FuzzableNum<
T, +Zero<T>, +Bounded<T>, +Drop<T>, +Serde<T>, +Into<T, felt252>, +Debug<T>
Expand Down

0 comments on commit 6b16f91

Please sign in to comment.