Skip to content

Commit

Permalink
chore: version 304 (#62)
Browse files Browse the repository at this point in the history
* chore: version 304

* chore: ts

* chore: fix tests
  • Loading branch information
Schlagonia authored Nov 1, 2024
1 parent 68b201f commit 516f95e
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
24 changes: 12 additions & 12 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[submodule "lib/yearn-vaults-v3"]
path = lib/yearn-vaults-v3
url = https://github.com/yearn/yearn-vaults-v3
branch = v3.0.3
[submodule "lib/tokenized-strategy"]
path = lib/tokenized-strategy
url = https://github.com/yearn/tokenized-strategy
branch = v3.0.3
[submodule "lib/openzeppelin-contracts"]
path = lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
branch = v4.9.5
[submodule "lib/tokenized-strategy-periphery"]
path = lib/tokenized-strategy-periphery
url = https://github.com/yearn/tokenized-strategy-periphery
branch = master
[submodule "lib/forge-std"]
path = lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "lib/tokenized-strategy"]
path = lib/tokenized-strategy
url = https://github.com/yearn/tokenized-strategy
branch = v3.0.4
[submodule "lib/yearn-vaults-v3"]
path = lib/yearn-vaults-v3
url = https://github.com/yearn/yearn-vaults-v3
branch = v3.0.4
[submodule "lib/tokenized-strategy-periphery"]
path = lib/tokenized-strategy-periphery
url = https://github.com/yearn/tokenized-strategy-periphery
branch = master
2 changes: 1 addition & 1 deletion lib/tokenized-strategy
4 changes: 2 additions & 2 deletions src/test/registry/TestRegistry.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ contract TestRegistry is Setup {

function setUp() public override {
super.setUp();
strategy = new MockStrategy(address(asset), "3.0.3");
strategy = new MockStrategy(address(asset), "3.0.4");
}

function test__set_up() public {
Expand Down Expand Up @@ -724,7 +724,7 @@ contract TestRegistry is Setup {
vm.prank(daddy);
registry.endorseSingleStrategyVault(address(strategy));

MockStrategy secondStrategy = new MockStrategy(address(asset), "3.0.3");
MockStrategy secondStrategy = new MockStrategy(address(asset), "3.0.4");
vm.prank(daddy);
registry.endorseSingleStrategyVault(address(secondStrategy));

Expand Down
2 changes: 1 addition & 1 deletion src/test/registry/TestReleaseRegistry.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ contract TestReleaseRegistry is Setup {
assertEq(releaseRegistry.numReleases(), 0);
assertEq(releaseRegistry.factories(0), address(0));
assertEq(releaseRegistry.tokenizedStrategies(0), address(0));
assertEq(releaseRegistry.releaseTargets("3.0.3"), 0);
assertEq(releaseRegistry.releaseTargets("3.0.4"), 0);
}

function test_new_release() public {
Expand Down
2 changes: 1 addition & 1 deletion src/test/utils/Setup.sol
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ contract Setup is ExtendedTest {
}

function createStrategy(address _asset) public returns (MockStrategy) {
return new MockStrategy(_asset, "3.0.3");
return new MockStrategy(_asset, "3.0.4");
}

function deployMockTokenized(
Expand Down

0 comments on commit 516f95e

Please sign in to comment.