Skip to content

Commit 4d40d91

Browse files
ci(changesets): version packages
1 parent 1aa9f53 commit 4d40d91

13 files changed

Lines changed: 56 additions & 18 deletions

File tree

.changeset/flat-module-structure.md

Lines changed: 0 additions & 12 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.41
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`04c705e`](https://github.com/IntersectMBO/evolution-sdk/commit/04c705ea8c04e19161eaf02e8544279485f48389)]:
8+
- @evolution-sdk/evolution@0.5.0
9+
- @evolution-sdk/devnet@3.0.0
10+
311
## 0.0.40
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.40",
3+
"version": "0.0.41",
44
"private": true,
55
"type": "module",
66
"scripts": {

examples/with-vite-react/CHANGELOG.md

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

3+
## 0.1.20
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`04c705e`](https://github.com/IntersectMBO/evolution-sdk/commit/04c705ea8c04e19161eaf02e8544279485f48389)]:
8+
- @evolution-sdk/evolution@0.5.0
9+
310
## 0.1.19
411

512
### Patch Changes

examples/with-vite-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "evolution-vite-react-example",
3-
"version": "0.1.19",
3+
"version": "0.1.20",
44
"private": true,
55
"type": "module",
66
"scripts": {

packages/aiken-uplc/CHANGELOG.md

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

3+
## 2.0.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`04c705e`](https://github.com/IntersectMBO/evolution-sdk/commit/04c705ea8c04e19161eaf02e8544279485f48389)]:
8+
- @evolution-sdk/evolution@0.5.0
9+
310
## 1.0.0
411

512
### Patch Changes

packages/aiken-uplc/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/aiken-uplc",
3-
"version": "1.0.0",
3+
"version": "2.0.0",
44
"description": "Aiken UPLC evaluator for Evolution SDK with WASM-based local script evaluation",
55
"type": "module",
66
"main": "./dist/index.js",

packages/evolution-devnet/CHANGELOG.md

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

3+
## 3.0.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`04c705e`](https://github.com/IntersectMBO/evolution-sdk/commit/04c705ea8c04e19161eaf02e8544279485f48389)]:
8+
- @evolution-sdk/evolution@0.5.0
9+
- @evolution-sdk/aiken-uplc@2.0.0
10+
- @evolution-sdk/scalus-uplc@2.0.0
11+
312
## 2.0.0
413

514
### 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": "2.0.0",
3+
"version": "3.0.0",
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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @evolution-sdk/evolution
22

3+
## 0.5.0
4+
5+
### Minor Changes
6+
7+
- [#240](https://github.com/IntersectMBO/evolution-sdk/pull/240) [`04c705e`](https://github.com/IntersectMBO/evolution-sdk/commit/04c705ea8c04e19161eaf02e8544279485f48389) Thanks [@solidsnakedev](https://github.com/solidsnakedev)! - Flatten module structure to eliminate webpack casing conflicts on case-insensitive filesystems. The wildcard export now maps PascalCase filenames directly — namespace name equals filename equals import path, removing the directory/namespace casing mismatch that caused dual module identifiers in webpack builds.
8+
9+
Modules previously nested in concept folders (address/, block/, transaction/, etc.) are now flat PascalCase files at the package root. Three subdirectories remain for separate domains with naming collisions: `plutus/` (on-chain script types), `cose/` (message signing protocol), and `blueprint/` (CIP-57 codegen). Deep imports into subdirectories are blocked.
10+
- Concept-folder subpath imports like `@evolution-sdk/evolution/address` are removed. Use the root barrel (`import { Address } from "@evolution-sdk/evolution"`) or the wildcard (`import * as Address from "@evolution-sdk/evolution/Address"`).
11+
- `MessageSigning` is renamed to `COSE` in the root barrel export.
12+
- `./plutus`, `./cose`, and `./blueprint` are available as subpath imports with namespaced barrels.
13+
- Blueprint barrel now uses `export * as` instead of `export *`.
14+
315
## 0.4.0
416

517
### Minor Changes

0 commit comments

Comments
 (0)