Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
Bump version to v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
FabijanC committed Jul 5, 2022
1 parent d07d5d2 commit ec3f8d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Aims to mimic Starknet's Alpha testnet, but with simplified functionality.
- [Advancing time](#advancing-time)
- [Contract debugging](#contract-debugging)
- [Predeployed accounts](#predeployed-accounts)
- [Mint token - Local faucet](#mint-token---local-faucet)
- [Devnet speed-up troubleshooting](#devnet-speed-up-troubleshooting)
- [Development](#development)

Expand Down Expand Up @@ -112,8 +113,8 @@ 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.4` - image for the amd64 architecture
- `shardlabs/starknet-devnet:0.2.4-arm` - image for the arm64 architecture
- `shardlabs/starknet-devnet:0.2.5` - image for the amd64 architecture
- `shardlabs/starknet-devnet:0.2.5-arm` - image for the arm64 architecture

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 Expand Up @@ -466,6 +467,7 @@ If you are not satisfied with Devnet's performance, consider the following:

- Make sure you are using the latest version of Devnet because new improvements are added regularly.
- Try using [lite-mode](#lite-mode).
- If minting tokens, set the [lite parameter](#mint-lite).
- Using an [installed Devnet](#install) should be faster than [running it with Docker](#run-with-docker).
- If you are [running Devnet with Docker](#run-with-docker) on an ARM machine (e.g. M1), make sure you are using [the appropriate image tag](#versions-and-tags)
- If Devnet has been running for some time, try restarting it (either by killing it or by using the [restart functionality](#restart)).
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.4"
version = "0.2.5"
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.4"
__version__ = "0.2.5"


def patched_pedersen_hash(left: int, right: int) -> int:
Expand Down

0 comments on commit ec3f8d0

Please sign in to comment.