@celo/wallet-hsm-azure 7.0.2-beta.0 → 8.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/package.json +5 -5
- package/typedoc.json +4 -2
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# @celo/wallet-hsm-azure
|
2
2
|
|
3
|
+
## 8.0.0-beta.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [[`a0efb2f`](https://github.com/celo-org/developer-tooling/commit/a0efb2fad370e350a3a4ea0ee10413628487fa47)]:
|
8
|
+
- @celo/wallet-base@8.0.0-beta.1
|
9
|
+
- @celo/wallet-remote@8.0.0-beta.1
|
10
|
+
- @celo/wallet-hsm@8.0.0-beta.1
|
11
|
+
|
3
12
|
## 7.0.2-beta.0
|
4
13
|
|
5
14
|
### Patch Changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@celo/wallet-hsm-azure",
|
3
|
-
"version": "
|
3
|
+
"version": "8.0.0-beta.1",
|
4
4
|
"description": "Azure HSM wallet implementation",
|
5
5
|
"author": "Celo",
|
6
6
|
"license": "Apache-2.0",
|
@@ -21,7 +21,7 @@
|
|
21
21
|
"build": "yarn run --top-level tsc -b .",
|
22
22
|
"clean": "yarn run --top-level tsc -b . --clean",
|
23
23
|
"docs": "yarn run --top-level typedoc",
|
24
|
-
"test": "yarn run --top-level jest
|
24
|
+
"test": "yarn run --top-level jest",
|
25
25
|
"lint": "yarn run --top-level eslint -c .eslintrc.js ",
|
26
26
|
"prepublishOnly": "yarn build"
|
27
27
|
},
|
@@ -32,9 +32,9 @@
|
|
32
32
|
"@celo/base": "^7.0.2",
|
33
33
|
"@celo/connect": "^7.0.0-beta.0",
|
34
34
|
"@celo/utils": "^8.0.2",
|
35
|
-
"@celo/wallet-base": "^
|
36
|
-
"@celo/wallet-hsm": "^
|
37
|
-
"@celo/wallet-remote": "^
|
35
|
+
"@celo/wallet-base": "^8.0.0-beta.1",
|
36
|
+
"@celo/wallet-hsm": "^8.0.0-beta.1",
|
37
|
+
"@celo/wallet-remote": "^8.0.0-beta.1",
|
38
38
|
"@ethereumjs/util": "8.0.5",
|
39
39
|
"@types/secp256k1": "^4.0.0",
|
40
40
|
"bignumber.js": "^9.0.0",
|
package/typedoc.json
CHANGED
@@ -11,9 +11,11 @@
|
|
11
11
|
"entryPoints": [
|
12
12
|
"./src"
|
13
13
|
],
|
14
|
-
"githubPages": false,
|
14
|
+
"githubPages": false,
|
15
|
+
"excludeReferences": true,
|
16
|
+
"includeVersion": true,
|
15
17
|
"plugin": [
|
16
18
|
"typedoc-plugin-markdown"
|
17
19
|
],
|
18
|
-
"entryPointStrategy": "
|
20
|
+
"entryPointStrategy": "resolve"
|
19
21
|
}
|