diff --git a/.changeset/little-baboons-repair.md b/.changeset/little-baboons-repair.md deleted file mode 100644 index 05428e9..0000000 --- a/.changeset/little-baboons-repair.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@inkathon/contracts": patch ---- - -Further simplify contract scripts by moving required explicit types to `use-inkathon`. Also changing the module resolution setting in `tsconfig.json` to import directly from sub-paths like `@scio-labs/use-inkathon/types` which makes the scripts in a context like Next.js app-dir API routes. diff --git a/.changeset/silver-mangos-yawn.md b/.changeset/silver-mangos-yawn.md deleted file mode 100644 index 1a64674..0000000 --- a/.changeset/silver-mangos-yawn.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@inkathon/contracts": patch -"@inkathon/frontend": patch ---- - -Move VSCode settings to `settings.json` file but keep `inkathon.code-workspace`. It's now also supported by default to develop with ink!athon without opening the code-workspace file. diff --git a/contracts/CHANGELOG.md b/contracts/CHANGELOG.md index 0d42157..be4258c 100644 --- a/contracts/CHANGELOG.md +++ b/contracts/CHANGELOG.md @@ -1,5 +1,13 @@ # @inkathon/contracts +## 0.4.2 + +### Patch Changes + +- [`cf68f5f`](https://github.com/scio-labs/inkathon/commit/cf68f5f96888c69434014ff4f8eccdd3558d20bc) Thanks [@wottpal](https://github.com/wottpal)! - Further simplify contract scripts by moving required explicit types to `use-inkathon`. Also changing the module resolution setting in `tsconfig.json` to import directly from sub-paths like `@scio-labs/use-inkathon/types` which makes the scripts in a context like Next.js app-dir API routes. + +- [`bc7d7ed`](https://github.com/scio-labs/inkathon/commit/bc7d7ed546fc2f17b6adaf96e34645f84ac2a5e0) Thanks [@wottpal](https://github.com/wottpal)! - Move VSCode settings to `settings.json` file but keep `inkathon.code-workspace`. It's now also supported by default to develop with ink!athon without opening the code-workspace file. + ## 0.4.1 ### Patch Changes diff --git a/contracts/package.json b/contracts/package.json index fb3e35b..f23d412 100644 --- a/contracts/package.json +++ b/contracts/package.json @@ -2,7 +2,7 @@ "name": "@inkathon/contracts", "type": "module", "private": true, - "version": "0.4.1", + "version": "0.4.2", "scripts": { "postinstall": "bash postinstall.sh", "test": "bash test-all.sh", diff --git a/frontend/CHANGELOG.md b/frontend/CHANGELOG.md index 7c69a98..a874ce3 100644 --- a/frontend/CHANGELOG.md +++ b/frontend/CHANGELOG.md @@ -1,5 +1,14 @@ # @inkathon/frontend +## 0.4.2 + +### Patch Changes + +- [`bc7d7ed`](https://github.com/scio-labs/inkathon/commit/bc7d7ed546fc2f17b6adaf96e34645f84ac2a5e0) Thanks [@wottpal](https://github.com/wottpal)! - Move VSCode settings to `settings.json` file but keep `inkathon.code-workspace`. It's now also supported by default to develop with ink!athon without opening the code-workspace file. + +- Updated dependencies [[`cf68f5f`](https://github.com/scio-labs/inkathon/commit/cf68f5f96888c69434014ff4f8eccdd3558d20bc), [`bc7d7ed`](https://github.com/scio-labs/inkathon/commit/bc7d7ed546fc2f17b6adaf96e34645f84ac2a5e0)]: + - @inkathon/contracts@0.4.2 + ## 0.4.1 ### Patch Changes diff --git a/frontend/package.json b/frontend/package.json index 66390cd..526cef0 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "@inkathon/frontend", "private": true, - "version": "0.4.1", + "version": "0.4.2", "scripts": { "postinstall": "bash postinstall.sh", "dev": "NODE_ENV=development POLKADOTJS_DISABLE_ESM_CJS_WARNING_FLAG=1 next dev",