Skip to content

Commit

Permalink
feat: update contract version to v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
igorsenych-cw committed Nov 22, 2024
1 parent b54879f commit d0d6150
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/base/Versionable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ abstract contract Versionable is IVersionable {
* @inheritdoc IVersionable
*/
function $__VERSION() external pure returns (Version memory) {
return Version(2, 1, 0);
return Version(2, 2, 0);
}
}
2 changes: 1 addition & 1 deletion test/YieldStreamer.schedule.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ describe("YieldStreamer - Deposit/Withdraw Simulation Tests", function () {
let adjustedBlockTime: number;
const EXPECTED_VERSION: Version = {
major: 2,
minor: 1,
minor: 2,
patch: 0
};

Expand Down
2 changes: 1 addition & 1 deletion test/YieldStreamerHarness.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe("YieldStreamerHarness", function () {
const harnessAdminRole: string = ethers.id("HARNESS_ADMIN_ROLE");
const EXPECTED_VERSION: Version = {
major: 2,
minor: 1,
minor: 2,
patch: 0
};

Expand Down

0 comments on commit d0d6150

Please sign in to comment.