Skip to content

Commit d868d57

Browse files
🔖 version 2.2.2-beta1
1 parent ddfac31 commit d868d57

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +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+
## [2.2.2]
8+
9+
### Updated
10+
- changed solidity version from fixed to flexible (adding ^ before version) to allow using other compilation settings on contracts importing the interfaces
11+
12+
713
## [2.2.1]
814

915
### Changed

contracts/version/Version.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ contract Version {
1111
*/
1212
function version() external pure returns (string memory) {
1313
// version 2.2.0
14-
return "2.2.1";
14+
return "2.2.2";
1515
}
1616
}

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onchain-id/solidity",
3-
"version": "2.2.1",
3+
"version": "2.2.2-beta1",
44
"description": "EVM solidity smart contracts for Blockchain OnchainID identities.",
55
"files": [
66
"artifacts",

test/identities/init.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ describe('Identity', () => {
3636
it('should return the version of the implementation', async () => {
3737
const {identityImplementation} = await loadFixture(deployIdentityFixture);
3838

39-
expect(await identityImplementation.version()).to.equal('2.2.1');
39+
expect(await identityImplementation.version()).to.equal('2.2.2');
4040
});
4141
});

0 commit comments

Comments
 (0)