From b8c29ae2ad3bfd4b820ad4bca4e60a21c284b061 Mon Sep 17 00:00:00 2001 From: Dragurimu Date: Sat, 20 Aug 2022 07:05:09 -0500 Subject: [PATCH] finalized version tested with +150.000 guilds --- packages/api-types/CHANGELOG.md | 2 +- packages/api-types/README.md | 2 +- packages/api-types/package.json | 2 +- packages/api-types/src/utils/constants.ts | 2 +- packages/cache/CHANGELOG.md | 4 ++-- packages/cache/package.json | 4 ++-- packages/core/CHANGELOG.md | 8 ++++---- packages/core/package.json | 8 ++++---- packages/helpers/CHANGELOG.md | 6 +++--- packages/helpers/package.json | 6 +++--- packages/rest/CHANGELOG.md | 4 ++-- packages/rest/package.json | 4 ++-- packages/ws/CHANGELOG.md | 4 ++-- packages/ws/package.json | 4 ++-- 14 files changed, 30 insertions(+), 30 deletions(-) diff --git a/packages/api-types/CHANGELOG.md b/packages/api-types/CHANGELOG.md index 04f8c64..8b40116 100644 --- a/packages/api-types/CHANGELOG.md +++ b/packages/api-types/CHANGELOG.md @@ -1,6 +1,6 @@ # @biscuitland/api-types -## 2.0.2 +## 2.0.3 ### Major Changes diff --git a/packages/api-types/README.md b/packages/api-types/README.md index 26cfadd..b267850 100644 --- a/packages/api-types/README.md +++ b/packages/api-types/README.md @@ -25,7 +25,7 @@ import type { DiscordUser } from '@biscuitland/api-types'; ## Example for [Deno](https://deno.land/) ```ts -import type { DiscordUser } from "https://unpkg.com/@biscuitland/api-types@2.0.2/dist/index.d.ts"; +import type { DiscordUser } from "https://unpkg.com/@biscuitland/api-types@2.0.3/dist/index.d.ts"; ``` We deliver this package through [unpkg](https://unpkg.com/) and it does contain constants and routes too diff --git a/packages/api-types/package.json b/packages/api-types/package.json index ae33c31..6c9fa31 100644 --- a/packages/api-types/package.json +++ b/packages/api-types/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/api-types", - "version": "2.0.2", + "version": "2.0.3", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", diff --git a/packages/api-types/src/utils/constants.ts b/packages/api-types/src/utils/constants.ts index 3774bac..4dce845 100644 --- a/packages/api-types/src/utils/constants.ts +++ b/packages/api-types/src/utils/constants.ts @@ -5,7 +5,7 @@ export const BASE_URL = 'https://discord.com/api'; export const API_VERSION = 10; /** https://github.com/oasisjs/biscuit/releases */ -export const BISCUIT_VERSION = '2.0.2'; +export const BISCUIT_VERSION = '2.0.3'; /** https://discord.com/developers/docs/reference#user-agent */ export const USER_AGENT = `DiscordBot (https://github.com/oasisjs/biscuit, v${BISCUIT_VERSION})`; diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index ad867fa..adce616 100644 --- a/packages/cache/CHANGELOG.md +++ b/packages/cache/CHANGELOG.md @@ -1,6 +1,6 @@ # @biscuitland/cache -## 2.0.2 +## 2.0.3 ### Major Changes @@ -9,4 +9,4 @@ ### Patch Changes - Updated dependencies - - @biscuitland/api-types@2.0.2 + - @biscuitland/api-types@2.0.3 diff --git a/packages/cache/package.json b/packages/cache/package.json index f4045f3..8f12850 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/cache", - "version": "2.0.2", + "version": "2.0.3", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", @@ -23,7 +23,7 @@ } }, "dependencies": { - "@biscuitland/api-types": "^2.0.2", + "@biscuitland/api-types": "^2.0.3", "ioredis": "^5.2.2" }, "devDependencies": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index cb58dbb..0fd2cb7 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,6 +1,6 @@ # @biscuitland/core -## 2.0.2 +## 2.0.3 ### Major Changes @@ -9,6 +9,6 @@ ### Patch Changes - Updated dependencies - - @biscuitland/api-types@2.0.2 - - @biscuitland/rest@2.0.2 - - @biscuitland/ws@2.0.2 + - @biscuitland/api-types@2.0.3 + - @biscuitland/rest@2.0.3 + - @biscuitland/ws@2.0.3 diff --git a/packages/core/package.json b/packages/core/package.json index f22933e..30abf86 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/core", - "version": "2.0.2", + "version": "2.0.3", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", @@ -23,9 +23,9 @@ } }, "dependencies": { - "@biscuitland/api-types": "^2.0.2", - "@biscuitland/rest": "^2.0.2", - "@biscuitland/ws": "^2.0.2" + "@biscuitland/api-types": "^2.0.3", + "@biscuitland/rest": "^2.0.3", + "@biscuitland/ws": "^2.0.3" }, "devDependencies": { "tsup": "^6.1.3" diff --git a/packages/helpers/CHANGELOG.md b/packages/helpers/CHANGELOG.md index 9ac7d49..6746245 100644 --- a/packages/helpers/CHANGELOG.md +++ b/packages/helpers/CHANGELOG.md @@ -1,9 +1,9 @@ # @biscuitland/helpers -## 2.0.2 +## 2.0.3 ### Patch Changes - Updated dependencies - - @biscuitland/api-types@2.0.2 - - @biscuitland/core@2.0.2 + - @biscuitland/api-types@2.0.3 + - @biscuitland/core@2.0.3 diff --git a/packages/helpers/package.json b/packages/helpers/package.json index 085258f..e8d6af4 100644 --- a/packages/helpers/package.json +++ b/packages/helpers/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/helpers", - "version": "2.0.2", + "version": "2.0.3", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", @@ -23,8 +23,8 @@ } }, "dependencies": { - "@biscuitland/api-types": "^2.0.2", - "@biscuitland/core": "^2.0.2" + "@biscuitland/api-types": "^2.0.3", + "@biscuitland/core": "^2.0.3" }, "devDependencies": { "tsup": "^6.1.3" diff --git a/packages/rest/CHANGELOG.md b/packages/rest/CHANGELOG.md index a59b89b..2835e94 100644 --- a/packages/rest/CHANGELOG.md +++ b/packages/rest/CHANGELOG.md @@ -1,6 +1,6 @@ # @biscuitland/rest -## 2.0.2 +## 2.0.3 ### Major Changes @@ -9,4 +9,4 @@ ### Patch Changes - Updated dependencies - - @biscuitland/api-types@2.0.2 + - @biscuitland/api-types@2.0.3 diff --git a/packages/rest/package.json b/packages/rest/package.json index 7c61838..5e58003 100644 --- a/packages/rest/package.json +++ b/packages/rest/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/rest", - "version": "2.0.2", + "version": "2.0.3", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", @@ -23,7 +23,7 @@ } }, "dependencies": { - "@biscuitland/api-types": "^2.0.2" + "@biscuitland/api-types": "^2.0.3" }, "devDependencies": { "tsup": "^6.1.3" diff --git a/packages/ws/CHANGELOG.md b/packages/ws/CHANGELOG.md index 77bebfc..7572bd4 100644 --- a/packages/ws/CHANGELOG.md +++ b/packages/ws/CHANGELOG.md @@ -1,6 +1,6 @@ # @biscuitland/ws -## 2.0.2 +## 2.0.3 ### Major Changes @@ -9,4 +9,4 @@ ### Patch Changes - Updated dependencies - - @biscuitland/api-types@2.0.2 + - @biscuitland/api-types@2.0.3 diff --git a/packages/ws/package.json b/packages/ws/package.json index 288edf5..ff9959d 100644 --- a/packages/ws/package.json +++ b/packages/ws/package.json @@ -1,6 +1,6 @@ { "name": "@biscuitland/ws", - "version": "2.0.2", + "version": "2.0.3", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", @@ -23,7 +23,7 @@ } }, "dependencies": { - "@biscuitland/api-types": "^2.0.2", + "@biscuitland/api-types": "^2.0.3", "ws": "^8.8.1" }, "devDependencies": {