Skip to content

Commit 196ff43

Browse files
🔖 (v2.0.1) update version
1 parent eb07972 commit 196ff43

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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.0.1]
8+
9+
### Added
10+
- added method createIdentityWithManagementKeys() that allows the factory to issue identities with multiple
11+
management keys.
12+
- tests for the createIdentityWithManagementKeys() method
13+
714
## [2.0.0]
815

916
Version 2.0.0 Audited by Hacken, more details [here](https://tokeny.com/wp-content/uploads/2023/04/Tokeny_ONCHAINID_SC-Audit_Report.pdf)

contracts/version/Version.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contract Version {
1010
* @dev Returns the string of the current version.
1111
*/
1212
function version() external pure returns (string memory) {
13-
// version 2.0.0
14-
return "2.0.0";
13+
// version 2.0.1
14+
return "2.0.1";
1515
}
1616
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onchain-id/solidity",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "EVM solidity smart contracts for Blockchain OnchainID identities.",
55
"files": [
66
"artifacts",

test/identities/init.test.ts

Lines changed: 1 addition & 1 deletion
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.0.0');
39+
expect(await identityImplementation.version()).to.equal('2.0.1');
4040
});
4141
});

0 commit comments

Comments
 (0)