Skip to content

Commit 62c5fde

Browse files
committed
chore: cherry-pick hotfix release 0.33.1 (#773)
1 parent 054d7f2 commit 62c5fde

File tree

19 files changed

+32
-25
lines changed

19 files changed

+32
-25
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@
7070
"typedoc": "^0.23.0",
7171
"typescript": "^4.8.3"
7272
},
73-
"version": "0.33.1-4",
73+
"version": "0.33.1",
7474
"packageManager": "[email protected]"
7575
}

packages/asset-did/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kiltprotocol/asset-did",
3-
"version": "0.33.1-4",
3+
"version": "0.33.1",
44
"description": "",
55
"main": "./lib/cjs/index.js",
66
"module": "./lib/esm/index.js",

packages/augment-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kiltprotocol/augment-api",
3-
"version": "0.33.1-4",
3+
"version": "0.33.1",
44
"description": "",
55
"types": "./lib/index.d.ts",
66
"type": "module",

packages/chain-helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kiltprotocol/chain-helpers",
3-
"version": "0.33.1-4",
3+
"version": "0.33.1",
44
"description": "",
55
"main": "./lib/cjs/index.js",
66
"module": "./lib/esm/index.js",

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kiltprotocol/config",
3-
"version": "0.33.1-4",
3+
"version": "0.33.1",
44
"description": "",
55
"type": "commonjs",
66
"main": "./lib/index.js",

packages/core/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kiltprotocol/core",
3-
"version": "0.33.1-4",
3+
"version": "0.33.1",
44
"description": "",
55
"main": "./lib/cjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -49,7 +49,6 @@
4949
"@polkadot/keyring": "^12.0.0",
5050
"@polkadot/types": "^10.4.0",
5151
"@polkadot/util": "^12.0.0",
52-
"@polkadot/util-crypto": "^12.0.0",
53-
"cbor-web": "^9.0.0"
52+
"@polkadot/util-crypto": "^12.0.0"
5453
}
5554
}

packages/core/src/publicCredential/PublicCredential.chain.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,10 @@ import type {
2323
PublicCredentialsCredentialsCredentialEntry,
2424
} from '@kiltprotocol/augment-api'
2525

26-
import * as cbor from 'cbor-web'
27-
2826
import { ConfigService } from '@kiltprotocol/config'
2927
import { fromChain as didFromChain } from '@kiltprotocol/did'
3028
import { validateUri } from '@kiltprotocol/asset-did'
31-
import { SDKErrors } from '@kiltprotocol/utils'
29+
import { SDKErrors, cbor } from '@kiltprotocol/utils'
3230

3331
import { getIdForCredential } from './PublicCredential.js'
3432
import { flattenCalls, isBatch, retrieveExtrinsicFromBlock } from '../utils.js'

packages/did/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kiltprotocol/did",
3-
"version": "0.33.1-4",
3+
"version": "0.33.1",
44
"description": "",
55
"main": "./lib/cjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -45,7 +45,6 @@
4545
"@polkadot/types": "^10.4.0",
4646
"@polkadot/types-codec": "^10.4.0",
4747
"@polkadot/util": "^12.0.0",
48-
"@polkadot/util-crypto": "^12.0.0",
49-
"cbor-web": "^9.0.0"
48+
"@polkadot/util-crypto": "^12.0.0"
5049
}
5150
}

packages/did/src/DidDetails/LightDidDetails.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* found in the LICENSE file in the root directory of this source tree.
66
*/
77

8-
import * as cbor from 'cbor-web'
98
import {
109
base58Decode,
1110
base58Encode,
@@ -22,7 +21,7 @@ import type {
2221
} from '@kiltprotocol/types'
2322
import { encryptionKeyTypes } from '@kiltprotocol/types'
2423

25-
import { SDKErrors, ss58Format } from '@kiltprotocol/utils'
24+
import { SDKErrors, ss58Format, cbor } from '@kiltprotocol/utils'
2625

2726
import { getAddressByKey, parse } from '../Did.utils.js'
2827
import { resourceIdToChain, validateService } from '../Did.chain.js'

packages/messaging/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kiltprotocol/messaging",
3-
"version": "0.33.1-4",
3+
"version": "0.33.1",
44
"description": "",
55
"main": "./lib/cjs/index.js",
66
"module": "./lib/esm/index.js",

0 commit comments

Comments
 (0)