diff --git a/page/docs/guide/cairo1-support.md b/page/docs/guide/cairo1-support.md index 50b25329c..0646a3cf2 100644 --- a/page/docs/guide/cairo1-support.md +++ b/page/docs/guide/cairo1-support.md @@ -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 ` - `--sierra-compiler-path ` diff --git a/pyproject.toml b/pyproject.toml index fd3d3094b..29b8df01e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT" diff --git a/starknet_devnet/__init__.py b/starknet_devnet/__init__.py index e573a8469..6e0fa2f24 100644 --- a/starknet_devnet/__init__.py +++ b/starknet_devnet/__init__.py @@ -13,7 +13,7 @@ import os import sys -__version__ = "0.5.1" +__version__ = "0.5.2" def _patch_pedersen_hash():