Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
### 2025.03.13

#### @iroha/client 0.3.0 (minor)

- feat(core, client)!: prototype-based selectors and predicates (#235)
- refactor(client)!: rename structs and params, extend docs #130 (#231)
- chore(core, client): exclude extra files from publishing #211 (#232)

#### @iroha/core 0.3.0 (minor)

- feat(core, client)!: prototype-based selectors and predicates (#235)
- fix(core): inline .wasm (#243)
- chore(core, client): exclude extra files from publishing #211 (#232)

### 2025.02.19

#### @iroha/client 0.2.0 (major)
#### @iroha/client 0.2.0 (minor)

- bump version to update @iroha/core dependency
- docs(core, client): extend docs, link modules (#226)
Expand All @@ -11,7 +25,7 @@

### 2025.02.18

#### @iroha/core 0.2.0 (major)
#### @iroha/core 0.2.0 (minor)

- fix(core)!: unified .wasm import (close #209, #221) (#222)

Expand Down
3 changes: 1 addition & 2 deletions packages/client/deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"name": "@iroha/client",
"version": "0.0.13",
"version": "0.3.0",
"exports": {
".": "./mod.ts",
"./web-socket": "./web-socket/mod.ts"
},
"imports": {
// TODO: remove these deps
"emittery": "npm:emittery@^1.1.0",
"p-defer": "npm:p-defer@^4.0.1"
}
Expand Down
6 changes: 4 additions & 2 deletions packages/core/deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iroha/core",
"version": "0.0.13",
"version": "0.3.0",
"exports": {
".": "./mod.ts",
"./codec": "./codec.ts",
Expand All @@ -15,6 +15,8 @@
"type-fest": "npm:type-fest@^4.33.0"
},
"publish": {
"exclude": ["./test"]
"exclude": [
"./test"
]
}
}