Skip to content

Commit c845b1d

Browse files
authored
Release 0.38.3 (#3061)
<!-- 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`
1 parent 69d27d2 commit c845b1d

File tree

13 files changed

+23
-17
lines changed

13 files changed

+23
-17
lines changed

.github/workflows/publish_plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
- uses: dtolnay/rust-toolchain@stable
136136
- uses: software-mansion/setup-scarb@v1
137137
with:
138-
scarb-version: "2.10.0"
138+
scarb-version: "2.11.0"
139139

140140
- name: Download artifacts
141141
uses: actions/download-artifact@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ jobs:
274274

275275
- uses: software-mansion/setup-scarb@v1
276276
with:
277-
scarb-version: "2.8.5"
277+
scarb-version: "2.11.0"
278278

279279
- name: Publish sncast_std
280280
working-directory: sncast_std

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.38.3] - 2025-03-07
11+
12+
### Fixed
13+
14+
- Issue with uploading `snforge_std` to scarbs package registry that prevented it from including package reexports required in Scarb >= 2.11.0
15+
1016
## [0.38.2] - 2025-03-06
1117

1218
### Forge

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
@@ -19,7 +19,7 @@ members = [
1919
exclude = ["crates/snforge-scarb-plugin"]
2020

2121
[workspace.package]
22-
version = "0.38.2"
22+
version = "0.38.3"
2323
edition = "2024"
2424
repository = "https://github.com/foundry-rs/starknet-foundry"
2525
license = "MIT"
Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

crates/snforge-scarb-plugin/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/snforge-scarb-plugin/Cargo.toml

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.38.2"
3+
version = "0.38.3"
44
edition = "2021"
55
publish = false
66
rust-version = "1.80.1"

crates/snforge-scarb-plugin/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_scarb_plugin"
3-
version = "0.38.2"
3+
version = "0.38.3"
44
edition = "2024_07"
55
include = ["target/scarb/cairo-plugin/"]
66

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.38.2"
6+
version = "0.38.3"

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.38.2"
3+
version = "0.38.3"
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.38.2"
6+
version = "0.38.3"
77

88
[[package]]
99
name = "snforge_std"
10-
version = "0.38.2"
10+
version = "0.38.3"
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.38.2"
3+
version = "0.38.3"
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)