Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Joachim-Lebrun authored Jun 27, 2024
2 parents d868d57 + a483cda commit d94822b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [2.2.2]

### Updated
- changed solidity version from fixed to flexible (adding ^ before version) to allow using other compilation settings on contracts importing the interfaces


## [2.2.1]

### Changed
Expand Down
3 changes: 2 additions & 1 deletion contracts/version/Version.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ contract Version {
* @dev Returns the string of the current version.
*/
function version() external pure returns (string memory) {
// version 2.2.0
// version 2.2.2
return "2.2.2";

}
}
1 change: 0 additions & 1 deletion test/identities/init.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ describe('Identity', () => {

it('should return the version of the implementation', async () => {
const {identityImplementation} = await loadFixture(deployIdentityFixture);

expect(await identityImplementation.version()).to.equal('2.2.2');
});
});

0 comments on commit d94822b

Please sign in to comment.