diff --git a/.changeset/dirty-bikes-glow.md b/.changeset/dirty-bikes-glow.md deleted file mode 100644 index 10c6e14..0000000 --- a/.changeset/dirty-bikes-glow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"capnweb": minor ---- - -The package now exports the type `RpcCompatible` (previously called `Serializable`, but not exported), which is needed when writing generic functions on `RpcStub` / `RpcPromise`. diff --git a/CHANGELOG.md b/CHANGELOG.md index 6752a40..b27873a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # capnweb +## 0.3.0 + +### Minor Changes + +- [#78](https://github.com/cloudflare/capnweb/pull/78) [`8a47045`](https://github.com/cloudflare/capnweb/commit/8a470458dd152a66d473be638626f668f8be47d9) Thanks [@itaylor](https://github.com/itaylor)! - The package now exports the type `RpcCompatible` (previously called `Serializable`, but not exported), which is needed when writing generic functions on `RpcStub` / `RpcPromise`. + ## 0.2.0 ### Minor Changes diff --git a/package-lock.json b/package-lock.json index a9b849c..5dfa306 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "capnweb", - "version": "0.2.0", + "version": "0.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "capnweb", - "version": "0.2.0", + "version": "0.3.0", "license": "MIT", "devDependencies": { "@changesets/changelog-github": "^0.5.1", diff --git a/package.json b/package.json index 558afe1..1224462 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capnweb", - "version": "0.2.0", + "version": "0.3.0", "description": "JavaScript/TypeScript-native RPC library with Promise Pipelining", "main": "dist/index.js", "types": "dist/index.d.ts",