diff --git a/contracts/zero-ex/CHANGELOG.json b/contracts/zero-ex/CHANGELOG.json index 227e8d22cd..a894aff203 100644 --- a/contracts/zero-ex/CHANGELOG.json +++ b/contracts/zero-ex/CHANGELOG.json @@ -1,4 +1,13 @@ [ + { + "version": "0.22.1", + "changes": [ + { + "note": "bump feature version to 1.2", + "pr": 213 + } + ] + }, { "version": "0.22.0", "changes": [ diff --git a/contracts/zero-ex/contracts/src/features/NativeOrdersFeature.sol b/contracts/zero-ex/contracts/src/features/NativeOrdersFeature.sol index 100e3ebe20..bb51defe36 100644 --- a/contracts/zero-ex/contracts/src/features/NativeOrdersFeature.sol +++ b/contracts/zero-ex/contracts/src/features/NativeOrdersFeature.sol @@ -34,7 +34,7 @@ contract NativeOrdersFeature is /// @dev Name of this feature. string public constant override FEATURE_NAME = "LimitOrders"; /// @dev Version of this feature. - uint256 public immutable override FEATURE_VERSION = _encodeVersion(1, 1, 0); + uint256 public immutable override FEATURE_VERSION = _encodeVersion(1, 2, 0); constructor( address zeroExAddress,