diff --git a/.changeset/odd-towns-cross.md b/.changeset/odd-towns-cross.md deleted file mode 100644 index 893dc867..00000000 --- a/.changeset/odd-towns-cross.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"@ascorbic/pds": patch -"create-pds": patch ---- - -Fix signing key serialization format and improve CLI - -- Fix signing key export to use hex encoding instead of JSON (was causing import failures) -- Add `@types/node` to create-pds template -- Suppress install and wrangler types output unless there's an error -- Add initial git commit after install, and commit after pds init -- Extract shared secret generation utilities for CLI commands -- Add tests for signing key serialization diff --git a/packages/create-pds/CHANGELOG.md b/packages/create-pds/CHANGELOG.md index 59c98746..6dd96505 100644 --- a/packages/create-pds/CHANGELOG.md +++ b/packages/create-pds/CHANGELOG.md @@ -1,5 +1,17 @@ # create-pds +## 0.0.3 + +### Patch Changes + +- [#23](https://github.com/ascorbic/atproto-worker/pull/23) [`d7bf601`](https://github.com/ascorbic/atproto-worker/commit/d7bf6013924da6867c1779face55b2ccc91f3849) Thanks [@ascorbic](https://github.com/ascorbic)! - Fix signing key serialization format and improve CLI + - Fix signing key export to use hex encoding instead of JSON (was causing import failures) + - Add `@types/node` to create-pds template + - Suppress install and wrangler types output unless there's an error + - Add initial git commit after install, and commit after pds init + - Extract shared secret generation utilities for CLI commands + - Add tests for signing key serialization + ## 0.0.2 ### Patch Changes diff --git a/packages/create-pds/package.json b/packages/create-pds/package.json index 281e9a67..236f63c8 100644 --- a/packages/create-pds/package.json +++ b/packages/create-pds/package.json @@ -1,6 +1,6 @@ { "name": "create-pds", - "version": "0.0.2", + "version": "0.0.3", "description": "Create a new AT Protocol PDS on Cloudflare Workers", "type": "module", "bin": { diff --git a/packages/pds/CHANGELOG.md b/packages/pds/CHANGELOG.md index 2bdd6adc..85ffc047 100644 --- a/packages/pds/CHANGELOG.md +++ b/packages/pds/CHANGELOG.md @@ -1,5 +1,17 @@ # @ascorbic/pds +## 0.0.2 + +### Patch Changes + +- [#23](https://github.com/ascorbic/atproto-worker/pull/23) [`d7bf601`](https://github.com/ascorbic/atproto-worker/commit/d7bf6013924da6867c1779face55b2ccc91f3849) Thanks [@ascorbic](https://github.com/ascorbic)! - Fix signing key serialization format and improve CLI + - Fix signing key export to use hex encoding instead of JSON (was causing import failures) + - Add `@types/node` to create-pds template + - Suppress install and wrangler types output unless there's an error + - Add initial git commit after install, and commit after pds init + - Extract shared secret generation utilities for CLI commands + - Add tests for signing key serialization + ## 0.0.1 ### Patch Changes diff --git a/packages/pds/package.json b/packages/pds/package.json index 0f01d3c2..c85c6cf9 100644 --- a/packages/pds/package.json +++ b/packages/pds/package.json @@ -1,6 +1,6 @@ { "name": "@ascorbic/pds", - "version": "0.0.1", + "version": "0.0.2", "description": "AT Protocol PDS on Cloudflare Workers", "type": "module", "main": "dist/index.js",