Skip to content

Commit

Permalink
set-version: v1.17.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
afalaleev committed Dec 8, 2024
1 parent 7f31a07 commit 85e4f39
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion common/config/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
UNKNOWN_GENESIS_HASH: Final[str] = "JEKNVnkbo3jma5nREBBJCDoXFVeKkD56V3xKrvRmWcmM" # Fake 0xFFFF..0000

_MAJOR_VER = 1
_MINOR_VER = 15
_MINOR_VER = 17
_BUILD_VER = 0
_REVISION = "dev-NEON_PROXY_REVISION_TO_BE_REPLACED"
NEON_PROXY_VER = f"v{_MAJOR_VER}.{_MINOR_VER}.{_BUILD_VER}-{_REVISION}"
Expand Down
2 changes: 2 additions & 0 deletions common/neon/neon_program.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ class NeonEvmProtocol(IntEnum):
v1013 = 1013 # 1.13 -> 1.013
v1014 = 1014 # 1.14 -> 1.014
v1015 = 1015 # 1.15 -> 1.015
v1017 = 1017 # 1.17 -> 1.017


# fmt: off
SUPPORTED_VERSION_SET = frozenset(
(
NeonEvmProtocol.v1015,
NeonEvmProtocol.v1017,
)
)
# fmt: on
Expand Down

0 comments on commit 85e4f39

Please sign in to comment.