Skip to content

Commit d9707fb

Browse files
committed
Bump colony version
1 parent cc3dce6 commit d9707fb

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

contracts/colony/Colony.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ contract Colony is BasicMetaTransaction, Multicall, ColonyStorage, PatriciaTreeP
3434
// This function, exactly as defined, is used in build scripts. Take care when updating.
3535
// Version number should be upped with every change in Colony or its dependency contracts or libraries.
3636
// prettier-ignore
37-
function version() public pure returns (uint256 colonyVersion) { return 17; }
37+
function version() public pure returns (uint256 colonyVersion) { return 18; }
3838

3939
function getColonyNetwork() public view returns (address) {
4040
return colonyNetworkAddress;

contracts/common/DomainTokenReceiver.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
along with The Colony Network. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818

19-
pragma solidity 0.8.27; // ignore-swc-103
19+
pragma solidity 0.8.28; // ignore-swc-103
2020
import { ERC20Extended } from "./ERC20Extended.sol";
2121
import { DSAuth } from "./../../lib/dappsys/auth.sol";
2222

helpers/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const INT256_MIN = new BN(2).pow(new BN(255)).mul(new BN(-1));
1414
const INT128_MAX = new BN(2).pow(new BN(127)).sub(new BN(1));
1515
const INT128_MIN = new BN(2).pow(new BN(127)).mul(new BN(-1));
1616

17-
const CURR_VERSION = 17;
17+
const CURR_VERSION = 18;
1818

1919
const RECOVERY_ROLE = 0;
2020
const ROOT_ROLE = 1;

0 commit comments

Comments
 (0)