Skip to content

Commit

Permalink
Shove version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
kronosapiens committed Nov 22, 2024
1 parent 84fdd66 commit 0abe21d
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 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 16; }

function getColonyNetwork() public view returns (address) {
return colonyNetworkAddress;
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/CoinMachine.sol
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ contract CoinMachine is ColonyExtension, BasicMetaTransaction {
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256 _version) {
return 12;
return 11;
}

/// @notice Called when upgrading the extension
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/EvaluatedExpenditure.sol
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ contract EvaluatedExpenditure is ColonyExtension, BasicMetaTransaction {
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256 _version) {
return 8;
return 7;
}

/// @notice Gets the next nonce for a meta-transaction
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/FundingQueue.sol
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ contract FundingQueue is ColonyExtension, BasicMetaTransaction {
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256 _version) {
return 9;
return 8;
}

/// @notice Configures the extension
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/MultisigPermissions.sol
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ contract MultisigPermissions is ColonyExtensionMeta, ColonyDataTypes, GetActionS
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256 _version) {
return 2;
return 1;
}

/// @notice Configures the extension
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/OneTxPayment.sol
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ contract OneTxPayment is ColonyExtension, BasicMetaTransaction, SetExpenditureSi
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256 _version) {
return 9;
return 8;
}

/// @notice Called when upgrading the extension
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/ReputationBootstrapper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ contract ReputationBootstrapper is ColonyExtensionMeta {
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256) {
return 6;
return 5;
}

/// @notice Configures the extension
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/StagedExpenditure.sol
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ contract StagedExpenditure is ColonyExtensionMeta, ColonyDataTypes {
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256 _version) {
return 4;
return 3;
}

// Public
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/StakedExpenditure.sol
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ contract StakedExpenditure is ColonyExtensionMeta {
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256 _version) {
return 7;
return 6;
}

// Public
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/StreamingPayments.sol
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ contract StreamingPayments is ColonyExtensionMeta, SetExpenditureSingleValues {
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256 _version) {
return 6;
return 5;
}

/// @notice Called when upgrading the extension
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/TokenSupplier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ contract TokenSupplier is ColonyExtension, BasicMetaTransaction {
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256 _version) {
return 9;
return 8;
}

/// @notice Configures the extension
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/Whitelist.sol
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ contract Whitelist is ColonyExtension, BasicMetaTransaction {
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256 _version) {
return 8;
return 7;
}

// Public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ contract VotingReputationStorage is
/// @notice Returns the version of the extension
/// @return _version The extension's version number
function version() public pure override returns (uint256 _version) {
return 13;
return 12;
}

function install(address _colony) public override {
Expand Down

0 comments on commit 0abe21d

Please sign in to comment.