diff --git a/.changeset/pre.json b/.changeset/pre.json index 0a5f2d101..e98f1133b 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -11,6 +11,7 @@ "proud-pans-promise", "rude-humans-jump", "short-gorillas-cry", + "silent-scissors-refuse", "smart-tips-arrive", "spotty-crews-watch", "young-kangaroos-deliver" diff --git a/CHANGELOG.md b/CHANGELOG.md index 16ba635df..4802bb150 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @rabbitholegg/questdk +## 1.0.1-alpha.9 + +### Patch Changes + +- [#12](https://github.com/rabbitholegg/questdk/pull/12) [`aa1f428`](https://github.com/rabbitholegg/questdk/commit/aa1f428a9dd354cd7b8b17c49a8dcab43cf12724) Thanks [@Quazia](https://github.com/Quazia)! - Simple hotfix for BigInt handling in the filter function + ## 1.0.1-alpha.8 ### Patch Changes diff --git a/package.json b/package.json index cf0a4812a..7f79a00f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rabbitholegg/questdk", - "version": "1.0.1-alpha.8", + "version": "1.0.1-alpha.9", "description": "", "type": "module", "main": "./dist/cjs/index.js", @@ -32,15 +32,23 @@ "typecheck": "tsc --noEmit" }, "keywords": [], - "authors": ["rabbitholegg"], + "authors": [ + "rabbitholegg" + ], "license": "MIT", "types": "./dist/types/index.d.ts", "typings": "./dist/types/index.d.ts", "typesVersions": { "*": { - "utils": ["./dist/types/utils/index.d.ts"], - "actions": ["./dist/types/actions/index.d.ts"], - "filter": ["./dist/types/filter/index.d.ts"] + "utils": [ + "./dist/types/utils/index.d.ts" + ], + "actions": [ + "./dist/types/actions/index.d.ts" + ], + "filter": [ + "./dist/types/filter/index.d.ts" + ] } }, "sideEffects": false,