From a18cb07e36c25cc04b87fe2871da730be8b6d49a Mon Sep 17 00:00:00 2001 From: FabijanC Date: Thu, 4 Aug 2022 14:27:02 +0200 Subject: [PATCH] Bump version to v0.2.8 --- README.md | 8 ++++---- pyproject.toml | 2 +- starknet_devnet/__init__.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2b802e4d2..1b0df26ac 100644 --- a/README.md +++ b/README.md @@ -114,15 +114,15 @@ docker pull shardlabs/starknet-devnet: Image tags correspond to Devnet versions as on PyPI and GitHub, with the `latest` tag used for the latest image. These images are built for linux/amd64. To use the arm64 versions, since `0.1.23` you can append `-arm` to the tag. E.g.: -- `shardlabs/starknet-devnet:0.2.7` - image for the amd64 architecture -- `shardlabs/starknet-devnet:0.2.7-arm` - image for the arm64 architecture +- `shardlabs/starknet-devnet:0.2.8` - image for the amd64 architecture +- `shardlabs/starknet-devnet:0.2.8-arm` - image for the arm64 architecture - `shardlabs/starknet-devnet:latest-arm` By appending the `-seed0` suffix, you can access images which [predeploy funded accounts](#predeployed-accounts) with `--seed 0`, thus always deploying the same set of accounts. E.g.: -- `shardlabs/starknet-devnet:0.2.7-seed0` +- `shardlabs/starknet-devnet:0.2.8-seed0` - `shardlabs/starknet-devnet:latest-seed0` -- `shardlabs/starknet-devnet:0.2.7-arm-seed0` +- `shardlabs/starknet-devnet:0.2.8-arm-seed0` The server inside the container listens to the port 5050, which you need to publish to a desired `` on your host machine: diff --git a/pyproject.toml b/pyproject.toml index 0af492347..6d808fac7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "starknet_devnet" -version = "0.2.7" +version = "0.2.8" description = "A local testnet for Starknet" authors = ["FabijanC "] license = "ISC" diff --git a/starknet_devnet/__init__.py b/starknet_devnet/__init__.py index 26718f7fe..e1090bf84 100644 --- a/starknet_devnet/__init__.py +++ b/starknet_devnet/__init__.py @@ -6,7 +6,7 @@ from crypto_cpp_py.cpp_bindings import cpp_hash -__version__ = "0.2.7" +__version__ = "0.2.8" def patched_pedersen_hash(left: int, right: int) -> int: