Skip to content

Commit f8f7af1

Browse files
ci(changesets): version packages
1 parent 38c52ff commit f8f7af1

File tree

7 files changed

+46
-29
lines changed

7 files changed

+46
-29
lines changed

.changeset/yummy-shoes-double.md

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

docs/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# docs
22

3+
## 0.0.15
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`7905507`](https://github.com/IntersectMBO/evolution-sdk/commit/79055076ab31214dc4c7462553484e9c2bcaf22c)]:
8+
- @evolution-sdk/evolution@0.3.8
9+
- @evolution-sdk/devnet@1.1.8
10+
311
## 0.0.14
412

513
### Patch Changes

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "0.0.14",
3+
"version": "0.0.15",
44
"private": true,
55
"type": "module",
66
"scripts": {

packages/evolution-devnet/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @evolution-sdk/devnet
22

3+
## 1.1.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`7905507`](https://github.com/IntersectMBO/evolution-sdk/commit/79055076ab31214dc4c7462553484e9c2bcaf22c)]:
8+
- @evolution-sdk/evolution@0.3.8
9+
310
## 1.1.7
411

512
### Patch Changes

packages/evolution-devnet/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@evolution-sdk/devnet",
3-
"version": "1.1.7",
3+
"version": "1.1.8",
44
"description": "Local Cardano devnet for testing and development with Docker",
55
"type": "module",
66
"main": "./dist/index.js",

packages/evolution/CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# @evolution-sdk/evolution
22

3+
## 0.3.8
4+
5+
### Patch Changes
6+
7+
- [#113](https://github.com/IntersectMBO/evolution-sdk/pull/113) [`7905507`](https://github.com/IntersectMBO/evolution-sdk/commit/79055076ab31214dc4c7462553484e9c2bcaf22c) Thanks [@solidsnakedev](https://github.com/solidsnakedev)! - Add `attachMetadata()` operation to TransactionBuilder for attaching transaction metadata according to CIP-10 standard.
8+
9+
**Changes:**
10+
- Added `attachMetadata()` method to attach metadata with custom labels
11+
- Metadata labels are now bigint (unbounded positive integers) supporting CIP-20 messages (label 674) and custom labels
12+
- Automatic computation of auxiliaryDataHash in transaction body when metadata is present
13+
- Proper fee calculation accounting for auxiliary data size
14+
- TransactionMetadatum refactored to simple union type: `string | bigint | Uint8Array | Map | Array`
15+
- Added `NonNegativeInteger` schema to Numeric module for unbounded non-negative integers
16+
17+
**Example:**
18+
19+
```typescript
20+
await client
21+
.newTx()
22+
.attachMetadata({
23+
label: 674n, // CIP-20 message label
24+
metadata: "Hello Cardano!"
25+
})
26+
.payToAddress({ address, assets })
27+
.build()
28+
.then((tx) => tx.sign().submit())
29+
```
30+
331
## 0.3.7
432

533
### Patch Changes

packages/evolution/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@evolution-sdk/evolution",
3-
"version": "0.3.7",
3+
"version": "0.3.8",
44
"description": "A modern TypeScript SDK for Cardano blockchain development",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)