Skip to content

Commit

Permalink
Bumped HubController version to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
u-hubar committed Dec 13, 2023
1 parent 8a48077 commit 8eaf176
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/v1/HubController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

contract HubController is Named, Versioned, ContractStatus, Ownable {
string private constant _NAME = "HubController";
string private constant _VERSION = "1.0.1";
string private constant _VERSION = "1.0.2";

// solhint-disable-next-line no-empty-blocks
constructor(address hubAddress) ContractStatus(hubAddress) {}
Expand Down
2 changes: 1 addition & 1 deletion test/v1/unit/HubController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('@v1 @unit HubController contract', function () {

it('Should deploy successfully with correct initial parameters', async function () {
expect(await HubController.name()).to.equal('HubController');
expect(await HubController.version()).to.equal('1.0.1');
expect(await HubController.version()).to.equal('1.0.2');
});

it('New Profile contract set in the Hub through the HubController; Expect status for old Profile to be false, status for the new Profile to be true', async function () {
Expand Down

0 comments on commit 8eaf176

Please sign in to comment.