Skip to content

Commit 44000c9

Browse files
committed
ci: patch behaviour to ignore commits made by releases bot
1 parent 147a734 commit 44000c9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/zk_whitelist/contract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def add_address_to_whitelist(self, address: Bytes32, proof: DynamicArray[Bytes32
6464
# Algorand address might represent a number larger than the field
6565
# modulus, so to be safe we take the address modulo the field modulus
6666
address_mod = Bytes32.from_bytes(
67-
(py.BigUInt.from_bytes(address.bytes) % curve_mod).bytes or op.bzero(32)
67+
(py.BigUInt.from_bytes(address.bytes) % curve_mod).bytes | op.bzero(32)
6868
)
6969

7070
# Verify the proof by calling the deposit verifier app

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "algorand-python-testing"
7-
version = "0.0.0-beta.1"
7+
version = "0.2.2-beta.1"
88
description = 'Algorand Python testing library'
99
readme = "README.md"
1010
requires-python = ">=3.12"
@@ -275,7 +275,7 @@ pythonpath = ['src']
275275
[tool.semantic_release]
276276
version_toml = ["pyproject.toml:project.version"]
277277
build_command = "pip install hatch && hatch build"
278-
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
278+
commit_message = "{version}\n\n[skip ci]"
279279
tag_format = "v{version}"
280280
major_on_zero = true
281281

0 commit comments

Comments
 (0)