Skip to content

Commit 5923aac

Browse files
authored
[misc]: release (#160)
Signed-off-by: Dmitry Balashov <[email protected]>
1 parent 993a054 commit 5923aac

File tree

22 files changed

+172
-96
lines changed

22 files changed

+172
-96
lines changed

.changeset/large-teachers-boil.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

.changeset/thirty-adults-perform.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

packages/client/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# @iroha2/client
22

3+
## 6.0.0
4+
5+
### Major Changes
6+
7+
- 40516f1: Updated according to Iroha `2.0.0-pre-rc.14` (internal release, reference hash: `726f5eabf65a79ea618b4fce62a09cee7a5b13d1`)
8+
9+
Notable changes:
10+
11+
- Renamed structure: ~~`QueryError`~~ `QueryExecutionFailure`
12+
- Introduced new enum struct, `Algorithm`. Changed `digest_function: string` field in `PublicKey` and `PrivateKey` to `digest_function: Algorithm`:
13+
```ts
14+
PublicKey({
15+
digest_function: Algorithm('Ed25519'),
16+
// ...
17+
})
18+
```
19+
20+
### Patch Changes
21+
22+
- Updated dependencies [40516f1]
23+
- Updated dependencies [40516f1]
24+
- @iroha2/data-model@6.0.0
25+
- @iroha2/crypto-core@1.1.0
26+
327
## 5.0.0
428

529
### Major Changes

packages/client/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iroha2/client",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
44
"module": "dist/lib.mjs",
55
"main": "dist/lib.cjs",
66
"types": "dist/lib.d.ts",
@@ -36,8 +36,8 @@
3636
"test:web": "pnpm --filter client-test-web test"
3737
},
3838
"dependencies": {
39-
"@iroha2/crypto-core": "workspace:^1.0.1",
40-
"@iroha2/data-model": "workspace:5.0.0",
39+
"@iroha2/crypto-core": "workspace:^1.1.0",
40+
"@iroha2/data-model": "workspace:6.0.0",
4141
"debug": "^4.3.4",
4242
"emittery": "^0.10.1",
4343
"json-bigint": "^1.0.0"

packages/client/test/integration/test-node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"test": "cross-env DEBUG=@iroha2* vitest run main.spec"
66
},
77
"devDependencies": {
8-
"@iroha2/client": "workspace:^5.0.0",
9-
"@iroha2/crypto-target-node": "workspace:^1.0.1",
8+
"@iroha2/client": "workspace:^6.0.0",
9+
"@iroha2/crypto-target-node": "workspace:^1.1.0",
1010
"@iroha2/test-peer": "workspace:^0.0.1",
1111
"cross-env": "^7.0.3",
1212
"node-fetch": "^3.3.0",

packages/client/test/integration/test-web/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
},
1212
"devDependencies": {
1313
"@bahmutov/cypress-esbuild-preprocessor": "^2.1.3",
14-
"@iroha2/client": "workspace:^5.0.0",
15-
"@iroha2/crypto-core": "workspace:^1.0.1",
16-
"@iroha2/crypto-target-web": "workspace:^1.0.1",
17-
"@iroha2/data-model": "workspace:^5.0.0",
14+
"@iroha2/client": "workspace:^6.0.0",
15+
"@iroha2/crypto-core": "workspace:^1.1.0",
16+
"@iroha2/crypto-target-web": "workspace:^1.1.0",
17+
"@iroha2/data-model": "workspace:^6.0.0",
1818
"@iroha2/test-peer": "workspace:^0.0.1",
1919
"@scale-codec/util": "^1.1.2",
2020
"@vitejs/plugin-vue": "^4.0.0",

packages/crypto/packages/core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @iroha2/crypto-core
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- 40516f1: **refactor**: combine new `Algorithm` type and codec from `data-model` with the crypto's `Algorithm` type, which is simply a string. Add `Algorithm.toDataModel` and `Algorithm.fromDataModel` methods.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [40516f1]
12+
- @iroha2/data-model@6.0.0
13+
314
## 1.0.1
415

516
### Patch Changes

packages/crypto/packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iroha2/crypto-core",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"license": "Apache 2.0",
55
"main": "dist/lib.cjs",
66
"module": "dist/lib.mjs",
@@ -21,6 +21,6 @@
2121
},
2222
"dependencies": {
2323
"@iroha2/crypto-util": "workspace:^0.1.0",
24-
"@iroha2/data-model": "workspace:^5.0.0"
24+
"@iroha2/data-model": "workspace:^6.0.0"
2525
}
2626
}

packages/crypto/packages/interface-wrap/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"main": "src/lib.ts",
66
"devDependencies": {
77
"@iroha2/crypto-util": "workspace:^0.1.0",
8-
"@iroha2/data-model": "workspace:^5.0.0"
8+
"@iroha2/data-model": "workspace:^6.0.0"
99
}
1010
}

packages/crypto/packages/target-bundler/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @iroha2/crypto-target-bundler
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- 40516f1: **refactor**: combine new `Algorithm` type and codec from `data-model` with the crypto's `Algorithm` type, which is simply a string. Add `Algorithm.toDataModel` and `Algorithm.fromDataModel` methods.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [40516f1]
12+
- Updated dependencies [40516f1]
13+
- @iroha2/data-model@6.0.0
14+
- @iroha2/crypto-core@1.1.0
15+
316
## 1.0.1
417

518
### Patch Changes

0 commit comments

Comments
 (0)