Skip to content

Commit

Permalink
🔖 version 2.2.2-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
Joachim-Lebrun committed Jun 27, 2024
1 parent ddfac31 commit d868d57
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +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
2 changes: 1 addition & 1 deletion contracts/version/Version.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ contract Version {
*/
function version() external pure returns (string memory) {
// version 2.2.0
return "2.2.1";
return "2.2.2";
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onchain-id/solidity",
"version": "2.2.1",
"version": "2.2.2-beta1",
"description": "EVM solidity smart contracts for Blockchain OnchainID identities.",
"files": [
"artifacts",
Expand Down
2 changes: 1 addition & 1 deletion test/identities/init.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,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.1');
expect(await identityImplementation.version()).to.equal('2.2.2');
});
});

0 comments on commit d868d57

Please sign in to comment.