Skip to content

Commit

Permalink
feat(release): v1.1.0 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
pegahcarter authored Jul 13, 2024
1 parent 99ad91b commit 001d30c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@frax-oft-upgradeable",
"version": "1.0.1",
"name": "@fraxfinance/frax-oft-upgradeable",
"version": "1.1.0",
"private": false,
"license": "MIT",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/BaseL0Script.sol
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ contract BaseL0Script is Script {
uint256 public chainid;

function version() public virtual pure returns (uint256, uint256, uint256) {
return (1, 0, 2);
return (1, 1, 0);
}

modifier broadcastAs(uint256 privateKey) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/DeployFraxOFTProtocol/DeployFraxOFTProtocol.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ contract DeployFraxOFTProtocol is BaseL0Script {
using Strings for uint256;

function version() public virtual override pure returns (uint256, uint256, uint256) {
return (1, 0, 6);
return (1, 1, 0);
}

function setUp() public virtual override {
Expand Down
2 changes: 1 addition & 1 deletion scripts/SubmitSends/SubmitSends.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ contract SubmitSends is BaseL0Script {
using Strings for uint256;

function version() public pure override returns (uint256, uint256, uint256) {
return (1, 0, 1);
return (1, 1, 0);
}

function setUp() public override {
Expand Down

0 comments on commit 001d30c

Please sign in to comment.