Skip to content

Commit

Permalink
Bump version to v0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
FabijanC committed Aug 2, 2022
1 parent 300d37a commit 9e491a2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,15 @@ docker pull shardlabs/starknet-devnet:<TAG>

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 `<PORT>` on your host machine:

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.2.6"
version = "0.2.7"
description = "A local testnet for Starknet"
authors = ["FabijanC <[email protected]>"]
license = "ISC"
Expand Down
2 changes: 1 addition & 1 deletion starknet_devnet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9e491a2

Please sign in to comment.