diff --git a/.changeset/add-typedoc-api-docs.md b/.changeset/add-typedoc-api-docs.md deleted file mode 100644 index 7e1a9fe..0000000 --- a/.changeset/add-typedoc-api-docs.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@solana/client": patch ---- - -Add TypeDoc API documentation generation with JSON spec output diff --git a/.changeset/comprehensive-jsdoc-docs.md b/.changeset/comprehensive-jsdoc-docs.md deleted file mode 100644 index efb3178..0000000 --- a/.changeset/comprehensive-jsdoc-docs.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@solana/client': patch -'@solana/react-hooks': patch ---- - -Add comprehensive JSDoc documentation for LLM-ready API docs diff --git a/.changeset/usespltoken-readme-docs.md b/.changeset/usespltoken-readme-docs.md deleted file mode 100644 index f2d060f..0000000 --- a/.changeset/usespltoken-readme-docs.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@solana/react-hooks': patch ---- - -Expand useSplToken README documentation with error handling example and complete property list diff --git a/examples/nextjs/CHANGELOG.md b/examples/nextjs/CHANGELOG.md index 9a001a3..5126acf 100644 --- a/examples/nextjs/CHANGELOG.md +++ b/examples/nextjs/CHANGELOG.md @@ -1,5 +1,13 @@ # @solana/example-nextjs +## 0.0.19 + +### Patch Changes + +- Updated dependencies [[`24d6e39`](https://github.com/solana-foundation/framework-kit/commit/24d6e390d96f61ff17c2d0dac1d260e41c7af144), [`f1cde24`](https://github.com/solana-foundation/framework-kit/commit/f1cde24e7d5b282265b5e0e0c078f54d1ba7fcf5), [`385c535`](https://github.com/solana-foundation/framework-kit/commit/385c5352ad9a5099b8b593b618849a0b9572c603)]: + - @solana/client@1.4.1 + - @solana/react-hooks@1.2.1 + ## 0.0.18 ### Patch Changes diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index a381ed6..b9aa873 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -1,7 +1,7 @@ { "name": "@solana/example-nextjs", "private": true, - "version": "0.0.18", + "version": "0.0.19", "type": "module", "scripts": { "dev": "next dev", diff --git a/examples/vite-react/CHANGELOG.md b/examples/vite-react/CHANGELOG.md index 5de23da..98c3c66 100644 --- a/examples/vite-react/CHANGELOG.md +++ b/examples/vite-react/CHANGELOG.md @@ -1,5 +1,13 @@ # @solana/example-vite-react +## 0.0.29 + +### Patch Changes + +- Updated dependencies [[`24d6e39`](https://github.com/solana-foundation/framework-kit/commit/24d6e390d96f61ff17c2d0dac1d260e41c7af144), [`f1cde24`](https://github.com/solana-foundation/framework-kit/commit/f1cde24e7d5b282265b5e0e0c078f54d1ba7fcf5), [`385c535`](https://github.com/solana-foundation/framework-kit/commit/385c5352ad9a5099b8b593b618849a0b9572c603)]: + - @solana/client@1.4.1 + - @solana/react-hooks@1.2.1 + ## 0.0.28 ### Patch Changes diff --git a/examples/vite-react/package.json b/examples/vite-react/package.json index 3bc3b92..ad2da71 100644 --- a/examples/vite-react/package.json +++ b/examples/vite-react/package.json @@ -1,7 +1,7 @@ { "name": "@solana/example-vite-react", "private": true, - "version": "0.0.28", + "version": "0.0.29", "type": "module", "scripts": { "dev": "vite", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index f0a16ef..79801d2 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -1,5 +1,13 @@ # @solana/client +## 1.4.1 + +### Patch Changes + +- [#89](https://github.com/solana-foundation/framework-kit/pull/89) [`24d6e39`](https://github.com/solana-foundation/framework-kit/commit/24d6e390d96f61ff17c2d0dac1d260e41c7af144) Thanks [@N-45div](https://github.com/N-45div)! - Add TypeDoc API documentation generation with JSON spec output + +- [#135](https://github.com/solana-foundation/framework-kit/pull/135) [`f1cde24`](https://github.com/solana-foundation/framework-kit/commit/f1cde24e7d5b282265b5e0e0c078f54d1ba7fcf5) Thanks [@GuiBibeau](https://github.com/GuiBibeau)! - Add comprehensive JSDoc documentation for LLM-ready API docs + ## 1.4.0 ### Minor Changes diff --git a/packages/client/package.json b/packages/client/package.json index 4a55fe0..366ef1d 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@solana/client", - "version": "1.4.0", + "version": "1.4.1", "description": "Framework-agnostic Solana client orchestration layer powering higher-level experiences", "exports": { ".": { diff --git a/packages/react-hooks/CHANGELOG.md b/packages/react-hooks/CHANGELOG.md index 5111aa1..6663f52 100644 --- a/packages/react-hooks/CHANGELOG.md +++ b/packages/react-hooks/CHANGELOG.md @@ -1,5 +1,16 @@ # @solana/react-hooks +## 1.2.1 + +### Patch Changes + +- [#135](https://github.com/solana-foundation/framework-kit/pull/135) [`f1cde24`](https://github.com/solana-foundation/framework-kit/commit/f1cde24e7d5b282265b5e0e0c078f54d1ba7fcf5) Thanks [@GuiBibeau](https://github.com/GuiBibeau)! - Add comprehensive JSDoc documentation for LLM-ready API docs + +- [#137](https://github.com/solana-foundation/framework-kit/pull/137) [`385c535`](https://github.com/solana-foundation/framework-kit/commit/385c5352ad9a5099b8b593b618849a0b9572c603) Thanks [@GuiBibeau](https://github.com/GuiBibeau)! - Expand useSplToken README documentation with error handling example and complete property list + +- Updated dependencies [[`24d6e39`](https://github.com/solana-foundation/framework-kit/commit/24d6e390d96f61ff17c2d0dac1d260e41c7af144), [`f1cde24`](https://github.com/solana-foundation/framework-kit/commit/f1cde24e7d5b282265b5e0e0c078f54d1ba7fcf5)]: + - @solana/client@1.4.1 + ## 1.2.0 ### Minor Changes diff --git a/packages/react-hooks/package.json b/packages/react-hooks/package.json index 4f7e19a..14fe518 100644 --- a/packages/react-hooks/package.json +++ b/packages/react-hooks/package.json @@ -1,6 +1,6 @@ { "name": "@solana/react-hooks", - "version": "1.2.0", + "version": "1.2.1", "description": "React hooks for the @solana/client Solana client", "exports": { "browser": "./dist/index.browser.mjs", diff --git a/packages/web3-compat/CHANGELOG.md b/packages/web3-compat/CHANGELOG.md index 1ef30b6..e90efe5 100644 --- a/packages/web3-compat/CHANGELOG.md +++ b/packages/web3-compat/CHANGELOG.md @@ -1,5 +1,12 @@ # @solana/web3-compat +## 0.0.18 + +### Patch Changes + +- Updated dependencies [[`24d6e39`](https://github.com/solana-foundation/framework-kit/commit/24d6e390d96f61ff17c2d0dac1d260e41c7af144), [`f1cde24`](https://github.com/solana-foundation/framework-kit/commit/f1cde24e7d5b282265b5e0e0c078f54d1ba7fcf5)]: + - @solana/client@1.4.1 + ## 0.0.17 ### Patch Changes diff --git a/packages/web3-compat/package.json b/packages/web3-compat/package.json index 11276f8..f8209a6 100644 --- a/packages/web3-compat/package.json +++ b/packages/web3-compat/package.json @@ -1,6 +1,6 @@ { "name": "@solana/web3-compat", - "version": "0.0.17", + "version": "0.0.18", "description": "Compatibility layer that preserves the web3.js API while delegating to Kit primitives under the hood", "exports": { "edge-light": { diff --git a/tests/types-smoke/CHANGELOG.md b/tests/types-smoke/CHANGELOG.md index 7deb990..471b327 100644 --- a/tests/types-smoke/CHANGELOG.md +++ b/tests/types-smoke/CHANGELOG.md @@ -1,5 +1,13 @@ # @solana/test-types-smoke +## 0.0.28 + +### Patch Changes + +- Updated dependencies [[`24d6e39`](https://github.com/solana-foundation/framework-kit/commit/24d6e390d96f61ff17c2d0dac1d260e41c7af144), [`f1cde24`](https://github.com/solana-foundation/framework-kit/commit/f1cde24e7d5b282265b5e0e0c078f54d1ba7fcf5), [`385c535`](https://github.com/solana-foundation/framework-kit/commit/385c5352ad9a5099b8b593b618849a0b9572c603)]: + - @solana/client@1.4.1 + - @solana/react-hooks@1.2.1 + ## 0.0.27 ### Patch Changes diff --git a/tests/types-smoke/package.json b/tests/types-smoke/package.json index e2bad6f..9eb3adc 100644 --- a/tests/types-smoke/package.json +++ b/tests/types-smoke/package.json @@ -1,6 +1,6 @@ { "name": "@solana/test-types-smoke", - "version": "0.0.27", + "version": "0.0.28", "private": true, "type": "module", "scripts": {