Skip to content

Commit

Permalink
Add an instruction how to update expected version to development docs (
Browse files Browse the repository at this point in the history
…#1685)

<!-- Reference any GitHub issues resolved by this PR -->

Closes #1660

## Introduced changes

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

- Add an instruction how to update expected version to development docs
- Add check in release script

## Checklist

<!-- Make sure all of these are complete -->

- [x] Linked relevant issue
- [x] Updated relevant documentation
- [x] Added relevant tests
- [x] Performed self-review of the code
- [x] Added changes to `CHANGELOG.md`
  • Loading branch information
Draggu authored Feb 12, 2024
1 parent 0467117 commit 9505d79
Show file tree
Hide file tree
Showing 14 changed files with 251 additions and 261 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84
- uses: software-mansion/[email protected]
- run: cargo test --release --lib -p forge -- --nocapture
- run: cargo test --release --lib -p forge
- run: cargo test --release --bin snforge
- run: cargo test --release integration -p forge

Expand Down
91 changes: 7 additions & 84 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
resolver = "2"
members = [
"crates/shared",
"crates/forge",
"crates/forge-runner",
"crates/sncast",
Expand Down Expand Up @@ -73,6 +74,7 @@ rand = "0.8.5"
project-root = "0.2.2"
which = "5.0.0"
conversions = { path = "./crates/conversions" }
shared = { path = "./crates/shared" }
test-case = "3.1.0"
scarb-metadata = "1.11.1"
flatten-serde-json = "0.1.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/forge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ include_dir.workspace = true
indoc.workspace = true
starknet_api.workspace = true
tempfile.workspace = true
rayon.workspace = true
shared.workspace = true
cheatnet = { path = "../cheatnet" }
conversions = { path = "../conversions" }
scarb-api = { path = "../scarb-api" }
Expand Down Expand Up @@ -67,9 +69,7 @@ snapbox.workspace = true
criterion = { version = "0.5.1", features = ["html_reports"] }
test_utils = { path = "test_utils" }
axum = "0.7.4"
gag = "1.0.0"
tokio-shared-rt = "0.1.0"
serial_test = "3.0.0"
lazy_static = "1.4.0"

[[bench]]
name = "forge_bench"
Expand Down
Loading

0 comments on commit 9505d79

Please sign in to comment.