Skip to content

Commit 5c182ec

Browse files
Merge pull request #45 from ElrondNetwork/development
Version v1.0.19
2 parents 040b4ce + 999856f commit 5c182ec

4 files changed

Lines changed: 8 additions & 2 deletions

File tree

erdpy/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes will be documented in this file.
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [1.0.19] - 05.10.2021
8+
- Bugfix by [MWFIAE](https://github.com/MWFIAE): add missing `enable_epochs` configurations
9+
710
## [1.0.18] - 14.09.2021
811
- Load a local `erdpy.json` file when running `erdpy` commands, containing default values for CLI options per project
912
- Bugfix by [MWFIAE](https://github.com/MWFIAE): correctly verify the value of the `--bytecode` argument

erdpy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.18"
1+
__version__ = "1.0.19"

erdpy/testnet/node_config_toml.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ def patch_enable_epochs(data: ConfigDict, testnet_config: TestnetConfiguration):
8080
enable_epochs['GlobalMintBurnDisableEpoch'] = 0
8181
enable_epochs['ESDTTransferRoleEnableEpoch'] = 0
8282
enable_epochs['BuiltInFunctionOnMetaEnableEpoch'] = 0
83+
enable_epochs['ComputeRewardCheckpointEnableEpoch'] = 5
84+
enable_epochs['BackwardCompSaveKeyValueEnableEpoch'] = 5
85+
enable_epochs['SCRSizeInvariantCheckEnableEpoch'] = 5
8386

8487
enable_epochs['MaxNodesChangeEnableEpoch'] = [
8588
{'EpochEnable': 0, 'MaxNumNodes': 36, 'NodesToShufflePerShard': 4},

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open("README.md", "r") as fh:
44
long_description = "https://github.com/ElrondNetwork/elrond-sdk-erdpy"
55

6-
VERSION = "1.0.18"
6+
VERSION = "1.0.19"
77

88
try:
99
with open('./erdpy/_version.py', 'wt') as versionfile:

0 commit comments

Comments
 (0)