Skip to content

v2.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 07 Dec 11:06
· 428 commits to main since this release
cba988e

Cairo release notes ➡️

Warning

This version is not yet supported on Starknet! If you want to develop contracts deployable to current Starknet, please stick with Scarb v2.3.1

Welcome to the release notes for Scarb v2.4.0!
This release brings new stable Cairo compiler release to Scarb.

Development dependencies

Since this release, you can specify development dependencies in your package manifest.
Development dependencies are only used when compiling tests.
These dependencies are not propagated to other packages which depend on this package.

In order to add development dependency, specify it under [dev-dependencies] section:

[dev-dependencies]
alexandria_math = { git = "https://github.com/keep-starknet-strange/alexandria.git" }

Alternatively, you can add development dependencies with scarb add command by passing --dev flag:

scarb add --dev alexandria_math --git https://github.com/keep-starknet-strange/alexandria.git

Cairo Version

This version of Scarb comes with Cairo v2.4.0.

What's Changed

New Contributors

Full Changelog: v2.4.0-rc6...v2.4.0