diff --git a/README.md b/README.md index e453fed59..0b0b5a969 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ If you don't specify the `HOST` part, the server will indeed be available on all - `call` - `deploy` - `estimate_fee` - - `get_block` + - `get_block` (currently pending block is not supported) - `get_code` - `get_full_contract` - `get_state_update` diff --git a/pyproject.toml b/pyproject.toml index ba6f210d7..2f6a9d57a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "starknet_devnet" -version = "0.2.0" +version = "0.2.1" description = "A local testnet for Starknet" authors = ["FabijanC "] license = "ISC" diff --git a/starknet_devnet/__init__.py b/starknet_devnet/__init__.py index 0a3d140d0..142ca5b79 100644 --- a/starknet_devnet/__init__.py +++ b/starknet_devnet/__init__.py @@ -2,4 +2,4 @@ Contains the server implementation and its utility classes and functions. """ -__version__ = "0.2.0" +__version__ = "0.2.1"