diff --git a/packages/api-types/CHANGELOG.md b/packages/api-types/CHANGELOG.md index 1b32399..aa8a299 100644 --- a/packages/api-types/CHANGELOG.md +++ b/packages/api-types/CHANGELOG.md @@ -1,5 +1,12 @@ # @biscuitland/api-types +## 2.1.0 + +### Minor Changes + +- Changes to cache and forum channels ✨ +- Forum channels and updates to @biscuitland/cache ✨ + ## 2.0.6 ### Patch Changes diff --git a/packages/api-types/package.json b/packages/api-types/package.json index a16509a..6ace156 100644 --- a/packages/api-types/package.json +++ b/packages/api-types/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/api-types", - "version": "2.0.6", + "version": "2.1.0", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index 6498de6..379f0c8 100644 --- a/packages/cache/CHANGELOG.md +++ b/packages/cache/CHANGELOG.md @@ -1,5 +1,18 @@ # @biscuitland/cache +## 2.1.0 + +### Minor Changes + +- Changes to cache and forum channels ✨ +- Forum channels and updates to @biscuitland/cache ✨ + +### Patch Changes + +- Updated dependencies +- Updated dependencies + - @biscuitland/api-types@2.1.0 + ## 2.0.6 ### Patch Changes diff --git a/packages/cache/package.json b/packages/cache/package.json index 650ad3e..8ddc135 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/cache", - "version": "2.0.6", + "version": "2.1.0", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", @@ -23,7 +23,7 @@ } }, "dependencies": { - "@biscuitland/api-types": "^2.0.6", + "@biscuitland/api-types": "^2.1.0", "ioredis": "^5.2.2" }, "devDependencies": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 7a87acb..1c305e4 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,20 @@ # @biscuitland/core +## 2.1.0 + +### Minor Changes + +- Changes to cache and forum channels ✨ +- Forum channels and updates to @biscuitland/cache ✨ + +### Patch Changes + +- Updated dependencies +- Updated dependencies + - @biscuitland/api-types@2.1.0 + - @biscuitland/rest@2.1.0 + - @biscuitland/ws@2.1.0 + ## 2.0.6 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 38ae3b9..ddd4238 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/core", - "version": "2.0.6", + "version": "2.1.0", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", @@ -23,9 +23,9 @@ } }, "dependencies": { - "@biscuitland/api-types": "^2.0.6", - "@biscuitland/rest": "^2.0.6", - "@biscuitland/ws": "^2.0.6" + "@biscuitland/api-types": "^2.1.0", + "@biscuitland/rest": "^2.1.0", + "@biscuitland/ws": "^2.1.0" }, "devDependencies": { "@types/node": "^18.7.14", diff --git a/packages/helpers/CHANGELOG.md b/packages/helpers/CHANGELOG.md index 34c54d5..8fca01f 100644 --- a/packages/helpers/CHANGELOG.md +++ b/packages/helpers/CHANGELOG.md @@ -1,5 +1,19 @@ # @biscuitland/helpers +## 2.1.0 + +### Minor Changes + +- Changes to cache and forum channels ✨ +- Forum channels and updates to @biscuitland/cache ✨ + +### Patch Changes + +- Updated dependencies +- Updated dependencies + - @biscuitland/api-types@2.1.0 + - @biscuitland/core@2.1.0 + ## 2.0.6 ### Patch Changes diff --git a/packages/helpers/package.json b/packages/helpers/package.json index 173c68a..6a55765 100644 --- a/packages/helpers/package.json +++ b/packages/helpers/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/helpers", - "version": "2.0.6", + "version": "2.1.0", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", @@ -23,8 +23,8 @@ } }, "dependencies": { - "@biscuitland/api-types": "^2.0.6", - "@biscuitland/core": "^2.0.6" + "@biscuitland/api-types": "^2.1.0", + "@biscuitland/core": "^2.1.0" }, "devDependencies": { "@types/node": "^18.7.14", diff --git a/packages/rest/CHANGELOG.md b/packages/rest/CHANGELOG.md index 7739f98..70bcb15 100644 --- a/packages/rest/CHANGELOG.md +++ b/packages/rest/CHANGELOG.md @@ -1,5 +1,18 @@ # @biscuitland/rest +## 2.1.0 + +### Minor Changes + +- Changes to cache and forum channels ✨ +- Forum channels and updates to @biscuitland/cache ✨ + +### Patch Changes + +- Updated dependencies +- Updated dependencies + - @biscuitland/api-types@2.1.0 + ## 2.0.6 ### Patch Changes diff --git a/packages/rest/package.json b/packages/rest/package.json index 500d812..77c2652 100644 --- a/packages/rest/package.json +++ b/packages/rest/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/rest", - "version": "2.0.6", + "version": "2.1.0", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", @@ -23,7 +23,7 @@ } }, "dependencies": { - "@biscuitland/api-types": "^2.0.6" + "@biscuitland/api-types": "^2.1.0" }, "devDependencies": { "tsup": "^6.1.3" diff --git a/packages/ws/CHANGELOG.md b/packages/ws/CHANGELOG.md index 9ed76a6..b0477bc 100644 --- a/packages/ws/CHANGELOG.md +++ b/packages/ws/CHANGELOG.md @@ -1,5 +1,18 @@ # @biscuitland/ws +## 2.1.0 + +### Minor Changes + +- Changes to cache and forum channels ✨ +- Forum channels and updates to @biscuitland/cache ✨ + +### Patch Changes + +- Updated dependencies +- Updated dependencies + - @biscuitland/api-types@2.1.0 + ## 2.0.6 ### Patch Changes diff --git a/packages/ws/package.json b/packages/ws/package.json index 6caa7b9..97ae29c 100644 --- a/packages/ws/package.json +++ b/packages/ws/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/ws", - "version": "2.0.6", + "version": "2.1.0", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", @@ -23,7 +23,7 @@ } }, "dependencies": { - "@biscuitland/api-types": "^2.0.6", + "@biscuitland/api-types": "^2.1.0", "@sapphire/async-queue": "^1.5.0", "ws": "^8.8.1" },