@txfence/provenance 0.1.0 → 0.1.2
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 +16 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @txfence/provenance
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix package descriptions — remove markdown, plain text only
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @txfence/core@0.1.2
|
|
10
|
+
|
|
11
|
+
## 0.1.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- fix missing license field (MIT)
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @txfence/core@0.1.1
|
|
18
|
+
|
|
3
19
|
## 0.1.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@txfence/provenance",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"description": "Cryptographic provenance chains for txfence. Hash-chained records with Merkle proofs for tamper-evident transaction audit trails.",
|
|
4
6
|
"type": "module",
|
|
5
7
|
"private": false,
|
|
6
8
|
"main": "./dist/index.js",
|
|
@@ -17,7 +19,7 @@
|
|
|
17
19
|
"CHANGELOG.md"
|
|
18
20
|
],
|
|
19
21
|
"dependencies": {
|
|
20
|
-
"@txfence/core": "0.1.
|
|
22
|
+
"@txfence/core": "0.1.2"
|
|
21
23
|
},
|
|
22
24
|
"devDependencies": {
|
|
23
25
|
"vitest": "^4.1.5",
|