Skip to content

Commit

Permalink
Bump colony version
Browse files Browse the repository at this point in the history
  • Loading branch information
area committed Jan 27, 2025
1 parent cc3dce6 commit d9707fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/colony/Colony.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract Colony is BasicMetaTransaction, Multicall, ColonyStorage, PatriciaTreeP
// This function, exactly as defined, is used in build scripts. Take care when updating.
// Version number should be upped with every change in Colony or its dependency contracts or libraries.
// prettier-ignore
function version() public pure returns (uint256 colonyVersion) { return 17; }
function version() public pure returns (uint256 colonyVersion) { return 18; }

function getColonyNetwork() public view returns (address) {
return colonyNetworkAddress;
Expand Down
2 changes: 1 addition & 1 deletion contracts/common/DomainTokenReceiver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
along with The Colony Network. If not, see <http://www.gnu.org/licenses/>.
*/

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

Expand Down
2 changes: 1 addition & 1 deletion helpers/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const INT256_MIN = new BN(2).pow(new BN(255)).mul(new BN(-1));
const INT128_MAX = new BN(2).pow(new BN(127)).sub(new BN(1));
const INT128_MIN = new BN(2).pow(new BN(127)).mul(new BN(-1));

const CURR_VERSION = 17;
const CURR_VERSION = 18;

const RECOVERY_ROLE = 0;
const ROOT_ROLE = 1;
Expand Down

0 comments on commit d9707fb

Please sign in to comment.