From c6030a41985b100a2aa6ece1c592263903cc2e2e Mon Sep 17 00:00:00 2001 From: vmidyllic <74898029+vmidyllic@users.noreply.github.com> Date: Wed, 4 Oct 2023 14:45:58 +0300 Subject: [PATCH] bump version (#139) * bump version --- package-lock.json | 4 ++-- package.json | 2 +- tests/onchain/on-chain-revocation.test.ts | 4 ---- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index c7944bfe..a26304f7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@0xpolygonid/js-sdk", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@0xpolygonid/js-sdk", - "version": "1.1.0", + "version": "1.2.0", "license": "AGPL-3.0", "dependencies": { "@iden3/js-crypto": "1.0.1", diff --git a/package.json b/package.json index 365b06fe..95b581bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@0xpolygonid/js-sdk", - "version": "1.1.0", + "version": "1.2.0", "description": "SDK to work with Polygon ID", "main": "dist/cjs/index.js", "module": "dist/esm_esbuild/index.js", diff --git a/tests/onchain/on-chain-revocation.test.ts b/tests/onchain/on-chain-revocation.test.ts index 447155e8..500e3766 100644 --- a/tests/onchain/on-chain-revocation.test.ts +++ b/tests/onchain/on-chain-revocation.test.ts @@ -240,7 +240,6 @@ describe('onchain', () => { chai.spy.on(onchainResolver, '_getStateStorageForIssuer', () => { return { getLatestStateById: () => { - console.log('mocked getLatestStateById genesis case'); throw new Error(VerifiableConstants.ERRORS.IDENTITY_DOES_NOT_EXIST); } }; @@ -248,7 +247,6 @@ describe('onchain', () => { chai.spy.on(onchainResolver, '_getOnChainRevocationStorageForIssuer', () => { return { getRevocationStatusByIdAndState: () => { - console.log('mocked getRevocationStatusByIdAndState genesis case'); return { mtp: { existence: false @@ -345,7 +343,6 @@ describe('onchain', () => { chai.spy.on(onchainResolver, '_getStateStorageForIssuer', () => { return { getLatestStateById: () => { - console.log('mocked getLatestStateById latest state case'); return { state: BigInt('0xf600ba49073ff1c396ed674263f04cb246647039d55d43a49ce310a857fa8923') }; @@ -355,7 +352,6 @@ describe('onchain', () => { chai.spy.on(onchainResolver, '_getOnChainRevocationStorageForIssuer', () => { return { getRevocationStatusByIdAndState: () => { - console.log('mocked getRevocationStatusByIdAndState latest state case'); return { mtp: { existence: false