Skip to content

Commit d94822b

Browse files
Merge branch 'main' into develop
2 parents d868d57 + a483cda commit d94822b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
78
## [2.2.2]
89

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

12-
1313
## [2.2.1]
1414

1515
### Changed

contracts/version/Version.sol

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ contract Version {
1010
* @dev Returns the string of the current version.
1111
*/
1212
function version() external pure returns (string memory) {
13-
// version 2.2.0
13+
// version 2.2.2
1414
return "2.2.2";
15+
1516
}
1617
}

test/identities/init.test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ describe('Identity', () => {
3535

3636
it('should return the version of the implementation', async () => {
3737
const {identityImplementation} = await loadFixture(deployIdentityFixture);
38-
3938
expect(await identityImplementation.version()).to.equal('2.2.2');
4039
});
4140
});

0 commit comments

Comments
 (0)