Skip to content

Commit

Permalink
feat: upgrade version to v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gabririgo committed Oct 19, 2022
1 parent ba3e7e5 commit 999e9bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/protocol/core/immutable/MixinConstants.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import "../../IRigoblockV3Pool.sol";
/// @dev Inheriting from interface is required as we override public variables.
abstract contract MixinConstants is IRigoblockV3Pool {
/// @inheritdoc IRigoblockV3PoolImmutable
string public constant override VERSION = "HF 3.1.0";
string public constant override VERSION = "HF 3.1.1";

bytes32 internal constant _POOL_INIT_SLOT = 0xe48b9bb119adfc3bccddcc581484cc6725fe8d292ebfcec7d67b1f93138d8bd8;

Expand Down
2 changes: 1 addition & 1 deletion test/core/RigoblockPool.Basetoken.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe("BaseTokenProxy", async () => {
const { pool } = await setupTests()
const authority = await deployments.get("Authority")
expect(await pool.authority()).to.be.eq(authority.address)
expect(await pool.VERSION()).to.be.eq('HF 3.1.0')
expect(await pool.VERSION()).to.be.eq('HF 3.1.1')
})
})

Expand Down

0 comments on commit 999e9bf

Please sign in to comment.