Skip to content

Commit

Permalink
chore: bump api version
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlagonia committed Sep 3, 2024
1 parent 4321cbc commit 06a354f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ remappings = [
fs_permissions = [{ access = "read", path = "./"}]

[fuzz]
runs = 10_000
runs = 10_00
max_test_rejects = 1_000_000

[invariant]
Expand Down
2 changes: 1 addition & 1 deletion src/TokenizedStrategy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ contract TokenizedStrategy {
//////////////////////////////////////////////////////////////*/

/// @notice API version this TokenizedStrategy implements.
string internal constant API_VERSION = "3.0.2";
string internal constant API_VERSION = "3.0.3";

/// @notice Value to set the `entered` flag to during a call.
uint8 internal constant ENTERED = 2;
Expand Down
2 changes: 1 addition & 1 deletion src/test/ERC20Std.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ contract ERC20BaseTest is Setup {
string(abi.encodePacked("ys", asset.symbol()))
);
assertEq(strategy.decimals(), 18);
assertEq(strategy.apiVersion(), "3.0.2");
assertEq(strategy.apiVersion(), "3.0.3");
}

function testFuzz_mint(address account_, uint256 amount_) public {
Expand Down

0 comments on commit 06a354f

Please sign in to comment.