From 9e491a2e55af07f843459af66d3c6e1d1b630be1 Mon Sep 17 00:00:00 2001 From: FabijanC Date: Tue, 2 Aug 2022 15:03:49 +0200 Subject: [PATCH] Bump version to v0.2.7 --- 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 2ff65384c..4fc988dd2 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.6` - image for the amd64 architecture -- `shardlabs/starknet-devnet:0.2.6-arm` - image for the arm64 architecture +- `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: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.6-seed0` +- `shardlabs/starknet-devnet:0.2.7-seed0` - `shardlabs/starknet-devnet:latest-seed0` -- `shardlabs/starknet-devnet:0.2.6-arm-seed0` +- `shardlabs/starknet-devnet:0.2.7-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 779d51aa0..f405fd126 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "starknet_devnet" -version = "0.2.6" +version = "0.2.7" description = "A local testnet for Starknet" authors = ["FabijanC "] license = "ISC" diff --git a/starknet_devnet/__init__.py b/starknet_devnet/__init__.py index 6db56597f..26718f7fe 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.6" +__version__ = "0.2.7" def patched_pedersen_hash(left: int, right: int) -> int: