Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
Bump version to v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FabijanC committed May 19, 2023
1 parent ae9a1b2 commit e99fd4a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion page/docs/guide/cairo1-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sidebar_position: 18

# Cairo 1 support

Declaring, deploying and interacting with Cairo 1 contracts is supported in the latest version. To successfully declare, if on an x86 machine, you don't have to do anything. If on another architecture, or if you want to specify a custom version of the Cairo 1 compiler, you need to specify a local compiler for recompilation (a necessary step in the declaraion of Cairo 1 contracts). Use one of:
Declaring, deploying and interacting with Cairo 1 contracts is supported in the latest version of starknet-devnet. To successfully declare a contract compiled with Cairo v1.0.0-rc0, if on an x86 machine, you don't have to do anything. If on another architecture, or if you want to specify a custom version of the Cairo 1 compiler, you need to specify a local compiler for recompilation (a necessary step in the declaraion of Cairo 1 contracts). Use one of:

- `--cairo-compiler-manifest <PATH_TO_CARGO_TOML>`
- `--sierra-compiler-path <PATH_TO_SIERRA_EXECUTABLE>`
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "starknet_devnet"
version = "0.5.1"
version = "0.5.2"
description = "A local testnet for Starknet"
authors = ["FabijanC <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion starknet_devnet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import os
import sys

__version__ = "0.5.1"
__version__ = "0.5.2"


def _patch_pedersen_hash():
Expand Down

0 comments on commit e99fd4a

Please sign in to comment.