Skip to content

Commit

Permalink
v1.0.0.rc5
Browse files Browse the repository at this point in the history
  • Loading branch information
mtabasco committed Oct 2, 2023
1 parent c8679b3 commit e6db598
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [v1.0.1.rc4] - 2023-09-19
## [v1.0.0.rc5] - 2023-10-02

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion contracts/libraries/CoreLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ library CoreLib {
event ModuleUpgraded(SSVModules indexed moduleId, address moduleAddress);

function getVersion() internal pure returns (string memory) {
return "v1.0.0.rc4";
return "v1.0.0.rc5";
}

function transferBalance(address to, uint256 amount) internal {
Expand Down
2 changes: 1 addition & 1 deletion contracts/test/libraries/CoreLibT.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "../../libraries/SSVStorage.sol";
library CoreLibT {

function getVersion() internal pure returns (string memory) {
return "v1.0.0.rc4";
return "v1.0.0.rc5";
}

function transfer(address to, uint256 amount) internal {
Expand Down
2 changes: 1 addition & 1 deletion test/deployment/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('Version upgrade tests', () => {

await ssvNetworkContract.updateModule(helpers.SSV_MODULES.SSV_VIEWS, viewsContract.address)

expect(await ssvNetworkViews.getVersion()).to.equal("v1.0.0.rc4");
expect(await ssvNetworkViews.getVersion()).to.equal("v1.0.0.rc5");
});

});
2 changes: 1 addition & 1 deletion test/helpers/contract-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const DataGenerator = {

export const initializeContract = async () => {
CONFIG = {
initialVersion: "v1.0.0.rc4",
initialVersion: "v1.0.0.rc5",
operatorMaxFeeIncrease: 1000,
declareOperatorFeePeriod: 3600, // HOUR
executeOperatorFeePeriod: 86400, // DAY
Expand Down

0 comments on commit e6db598

Please sign in to comment.