Skip to content

Commit

Permalink
Bump version to v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FabijanC committed Nov 24, 2022
1 parent e630ad2 commit 52ad108
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions page/docs/guide/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,20 +112,20 @@ poetry version <VERSION>

or any other variation of that [command](https://python-poetry.org/docs/cli/#version)

In file `/starknet_devnet/__init__.py` you need to manually update the version:
In `starknet_devnet/__init__.py` you need to manually update the version:

```
__version__ = "<VERSION>"
```

If you did everything correctly these commands should result with the same version:
If you did everything correctly, these commands should result with the same version:

```
poetry version
poetry run starknet-devnet --version
```

Later, add a tag to the version update commit (Notice the `v`):
Add a tag to the version update commit (Notice the `v`):

```
git tag v<VERSION>
Expand All @@ -140,6 +140,6 @@ cd page && npm run deploy

Lastly:

- Check if CI and image publish worked after commit
- Check if tests and version/image publishing ran successfully on CI
- Generate release notes with the corresponding tag version on GitHub
- Inform users on Telegram, [Discord Devnet channel](https://discord.com/channels/793094838509764618/985824027950055434), and [StarkNet Shamans](https://community.starknet.io/t/starknet-devnet/69).
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.4.0"
version = "0.4.1"
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 @@ -9,7 +9,7 @@
from crypto_cpp_py.cpp_bindings import cpp_hash


__version__ = "0.4.0"
__version__ = "0.4.1"


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

0 comments on commit 52ad108

Please sign in to comment.