Skip to content

Commit d6eb5d0

Browse files
ci(changesets): version packages
1 parent 2edb617 commit d6eb5d0

File tree

7 files changed

+80
-36
lines changed

7 files changed

+80
-36
lines changed

.changeset/nice-tips-learn.md

Lines changed: 0 additions & 33 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.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`aaf0882`](https://github.com/IntersectMBO/evolution-sdk/commit/aaf0882e280fad9769410a81419ebf1c6af48785)]:
8+
- @evolution-sdk/devnet@1.1.4
9+
- @evolution-sdk/evolution@0.3.4
10+
311
## 0.0.10
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.10",
3+
"version": "0.0.11",
44
"private": true,
55
"type": "module",
66
"scripts": {

packages/evolution-devnet/CHANGELOG.md

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

3+
## 1.1.4
4+
5+
### Patch Changes
6+
7+
- [#101](https://github.com/IntersectMBO/evolution-sdk/pull/101) [`aaf0882`](https://github.com/IntersectMBO/evolution-sdk/commit/aaf0882e280fad9769410a81419ebf1c6af48785) Thanks [@solidsnakedev](https://github.com/solidsnakedev)! - ### Core Module Enhancements
8+
9+
**Mint Module**
10+
- Added `Mint.getByHex()` and `Mint.getAssetsByPolicyHex()` utilities for hex-based lookups
11+
- Fixed `Mint.insert`, `removePolicy`, `removeAsset`, and `get` to use content-based equality (`Equal.equals`) instead of reference equality for PolicyId/AssetName lookups
12+
13+
**Fee Calculation**
14+
- Fixed `calculateFeeIteratively` to include mint field in fee calculation via TxContext access
15+
- Removed unnecessary 5000n fee buffer that caused fee overpayment
16+
17+
**Transaction Builder**
18+
- Added `.mint()` method to TransactionBuilder for native token minting/burning
19+
- `.attachScript()` now accepts `{ script: CoreScript }` parameter format
20+
- Improved type safety by using Core types directly instead of SDK wrappers
21+
22+
### Devnet Package
23+
24+
**Test Infrastructure**
25+
- Added `TxBuilder.Mint.test.ts` with devnet submit tests for minting and burning
26+
- Updated `TxBuilder.Scripts.test.ts` to use Core types (`PlutusV2.PlutusV2`) instead of SDK format
27+
- Refactored `createCoreTestUtxo` helper to accept Core `Script` types directly
28+
- Removed unused `createTestUtxo` (SDK format) helper
29+
- Added `Genesis.calculateUtxosFromConfig()` for retrieving initial UTxOs from genesis config
30+
- Replaced all `Buffer.from().toString("hex")` with `Text.toHex()` in tests
31+
32+
### Breaking Changes
33+
- `attachScript()` now requires `{ script: ... }` object format instead of passing script directly
34+
- Test helpers now use Core types exclusively
35+
36+
- Updated dependencies [[`aaf0882`](https://github.com/IntersectMBO/evolution-sdk/commit/aaf0882e280fad9769410a81419ebf1c6af48785)]:
37+
- @evolution-sdk/evolution@0.3.4
38+
339
## 1.1.3
440

541
### 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.3",
3+
"version": "1.1.4",
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: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# @evolution-sdk/evolution
22

3+
## 0.3.4
4+
5+
### Patch Changes
6+
7+
- [#101](https://github.com/IntersectMBO/evolution-sdk/pull/101) [`aaf0882`](https://github.com/IntersectMBO/evolution-sdk/commit/aaf0882e280fad9769410a81419ebf1c6af48785) Thanks [@solidsnakedev](https://github.com/solidsnakedev)! - ### Core Module Enhancements
8+
9+
**Mint Module**
10+
- Added `Mint.getByHex()` and `Mint.getAssetsByPolicyHex()` utilities for hex-based lookups
11+
- Fixed `Mint.insert`, `removePolicy`, `removeAsset`, and `get` to use content-based equality (`Equal.equals`) instead of reference equality for PolicyId/AssetName lookups
12+
13+
**Fee Calculation**
14+
- Fixed `calculateFeeIteratively` to include mint field in fee calculation via TxContext access
15+
- Removed unnecessary 5000n fee buffer that caused fee overpayment
16+
17+
**Transaction Builder**
18+
- Added `.mint()` method to TransactionBuilder for native token minting/burning
19+
- `.attachScript()` now accepts `{ script: CoreScript }` parameter format
20+
- Improved type safety by using Core types directly instead of SDK wrappers
21+
22+
### Devnet Package
23+
24+
**Test Infrastructure**
25+
- Added `TxBuilder.Mint.test.ts` with devnet submit tests for minting and burning
26+
- Updated `TxBuilder.Scripts.test.ts` to use Core types (`PlutusV2.PlutusV2`) instead of SDK format
27+
- Refactored `createCoreTestUtxo` helper to accept Core `Script` types directly
28+
- Removed unused `createTestUtxo` (SDK format) helper
29+
- Added `Genesis.calculateUtxosFromConfig()` for retrieving initial UTxOs from genesis config
30+
- Replaced all `Buffer.from().toString("hex")` with `Text.toHex()` in tests
31+
32+
### Breaking Changes
33+
- `attachScript()` now requires `{ script: ... }` object format instead of passing script directly
34+
- Test helpers now use Core types exclusively
35+
336
## 0.3.3
437

538
### 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.3",
3+
"version": "0.3.4",
44
"description": "A modern TypeScript SDK for Cardano blockchain development",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)