From f5134fd23ba658454b08ae77c58035cbd78b64f4 Mon Sep 17 00:00:00 2001 From: Shigma Date: Sun, 17 Dec 2023 02:24:29 +0800 Subject: [PATCH] chore: bump versions --- package.json | 4 ++-- packages/core/package.json | 4 ++-- packages/koishi/package.json | 6 +++--- packages/koishi/src/worker/daemon.ts | 2 +- packages/loader/package.json | 6 +++--- plugins/common/bind/package.json | 4 ++-- plugins/common/broadcast/package.json | 4 ++-- plugins/common/callme/package.json | 4 ++-- plugins/common/echo/package.json | 4 ++-- plugins/common/help/package.json | 4 ++-- plugins/common/inspect/package.json | 4 ++-- plugins/database/memory/package.json | 4 ++-- plugins/database/mongo/package.json | 8 ++++---- plugins/database/mysql/package.json | 8 ++++---- plugins/database/postgres/package.json | 8 ++++---- plugins/database/sqlite/package.json | 8 ++++---- plugins/hmr/package.json | 4 ++-- plugins/mock/package.json | 4 ++-- plugins/server/package.json | 4 ++-- 19 files changed, 47 insertions(+), 47 deletions(-) diff --git a/package.json b/package.json index ee5a273c3d..ba413b4cc2 100644 --- a/package.json +++ b/package.json @@ -69,11 +69,11 @@ "shx": "^0.3.4", "source-map-support": "^0.5.21", "typescript": "^5.3.2", - "yakumo": "^1.0.0-alpha.3", + "yakumo": "^1.0.0-alpha.4", "yakumo-esbuild": "^1.0.0-alpha.0", "yakumo-esbuild-yaml": "^1.0.0-alpha.0", "yakumo-mocha": "^1.0.0-alpha.0", - "yakumo-publish-sync": "^1.0.0-alpha.0", + "yakumo-publish-sync": "^1.0.0-alpha.1", "yakumo-tsc": "^1.0.0-alpha.1", "yml-register": "^1.1.0" } diff --git a/packages/core/package.json b/packages/core/package.json index 5e692bf23c..3409fc01a4 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/core", "description": "Core Features for Koishi", - "version": "4.16.0", + "version": "4.16.1", "main": "lib/index.cjs", "module": "lib/index.mjs", "typings": "lib/index.d.ts", @@ -33,7 +33,7 @@ "dependencies": { "@koishijs/i18n-utils": "^1.0.0", "@koishijs/utils": "^7.1.1", - "@minatojs/core": "^2.7.0", + "@minatojs/core": "^2.8.0", "@satorijs/core": "^3.3.0", "cordis": "^3.4.0", "cosmokit": "^1.5.1", diff --git a/packages/koishi/package.json b/packages/koishi/package.json index b87e2f452f..862b450234 100644 --- a/packages/koishi/package.json +++ b/packages/koishi/package.json @@ -1,7 +1,7 @@ { "name": "koishi", "description": "Cross-Platform Chatbot Framework Made with Love", - "version": "4.16.0", + "version": "4.16.1", "main": "lib/index.cjs", "module": "lib/index.mjs", "types": "lib/index.d.ts", @@ -44,8 +44,8 @@ "framework" ], "dependencies": { - "@koishijs/core": "4.16.0", - "@koishijs/loader": "4.3.0", + "@koishijs/core": "4.16.1", + "@koishijs/loader": "4.3.1", "@koishijs/plugin-server": "^3.1.3", "@koishijs/utils": "^7.1.1", "@satorijs/satori": "^3.3.0", diff --git a/packages/koishi/src/worker/daemon.ts b/packages/koishi/src/worker/daemon.ts index b9e05bacef..98a576e1bb 100644 --- a/packages/koishi/src/worker/daemon.ts +++ b/packages/koishi/src/worker/daemon.ts @@ -10,7 +10,7 @@ export const Config: Schema = Schema.object({ autoRestart: Schema.boolean().description('在运行时崩溃自动重启。').default(true), heartbeatInterval: Schema.number().description('心跳发送间隔。').default(0), heartbeatTimeout: Schema.number().description('心跳超时时间。').default(0), -}).description('守护设置') +}).description('守护设置').hidden() Context.Config.list.push(Schema.object({ daemon: Config, diff --git a/packages/loader/package.json b/packages/loader/package.json index ba8b193977..70e23002fe 100644 --- a/packages/loader/package.json +++ b/packages/loader/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/loader", "description": "Config Loader for Koishi", - "version": "4.3.0", + "version": "4.3.1", "main": "lib/index.js", "module": "lib/shared.mjs", "types": "lib/index.d.ts", @@ -41,10 +41,10 @@ "config" ], "peerDependencies": { - "@koishijs/core": "4.16.0" + "@koishijs/core": "4.16.1" }, "devDependencies": { - "@koishijs/core": "4.16.0", + "@koishijs/core": "4.16.1", "@types/js-yaml": "^4.0.9" }, "dependencies": { diff --git a/plugins/common/bind/package.json b/plugins/common/bind/package.json index 4369d3e2e9..125adeb84e 100644 --- a/plugins/common/bind/package.json +++ b/plugins/common/bind/package.json @@ -46,11 +46,11 @@ ] }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { "@koishijs/plugin-database-memory": "^2.5.1", "@koishijs/plugin-mock": "^2.6.5", - "koishi": "^4.16.0" + "koishi": "^4.16.1" } } diff --git a/plugins/common/broadcast/package.json b/plugins/common/broadcast/package.json index 000d0db926..99060cc848 100644 --- a/plugins/common/broadcast/package.json +++ b/plugins/common/broadcast/package.json @@ -45,11 +45,11 @@ ] }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { "@koishijs/plugin-database-memory": "^2.5.1", "@koishijs/plugin-mock": "^2.6.5", - "koishi": "^4.16.0" + "koishi": "^4.16.1" } } diff --git a/plugins/common/callme/package.json b/plugins/common/callme/package.json index 5302ca9eae..a84d131208 100644 --- a/plugins/common/callme/package.json +++ b/plugins/common/callme/package.json @@ -45,11 +45,11 @@ ] }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { "@koishijs/plugin-database-memory": "^2.5.1", "@koishijs/plugin-mock": "^2.6.5", - "koishi": "^4.16.0" + "koishi": "^4.16.1" } } diff --git a/plugins/common/echo/package.json b/plugins/common/echo/package.json index f77f90cd6a..4510a1757d 100644 --- a/plugins/common/echo/package.json +++ b/plugins/common/echo/package.json @@ -41,10 +41,10 @@ ] }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { "@koishijs/plugin-mock": "^2.6.5", - "koishi": "^4.16.0" + "koishi": "^4.16.1" } } diff --git a/plugins/common/help/package.json b/plugins/common/help/package.json index 068c2b1b6d..be38a9d85c 100644 --- a/plugins/common/help/package.json +++ b/plugins/common/help/package.json @@ -45,11 +45,11 @@ ] }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { "@koishijs/plugin-database-memory": "^2.5.1", "@koishijs/plugin-mock": "^2.6.5", - "koishi": "^4.16.0" + "koishi": "^4.16.1" } } diff --git a/plugins/common/inspect/package.json b/plugins/common/inspect/package.json index c6c146ba92..d50a2494d5 100644 --- a/plugins/common/inspect/package.json +++ b/plugins/common/inspect/package.json @@ -47,10 +47,10 @@ ] }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { "@koishijs/plugin-mock": "^2.6.5", - "koishi": "^4.16.0" + "koishi": "^4.16.1" } } diff --git a/plugins/database/memory/package.json b/plugins/database/memory/package.json index 19b75f1062..7e7cecfc0b 100644 --- a/plugins/database/memory/package.json +++ b/plugins/database/memory/package.json @@ -43,10 +43,10 @@ } }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "dependencies": { "@minatojs/driver-memory": "^2.5.1" diff --git a/plugins/database/mongo/package.json b/plugins/database/mongo/package.json index f97dbbe719..b0d00f50b0 100644 --- a/plugins/database/mongo/package.json +++ b/plugins/database/mongo/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/plugin-database-mongo", "description": "MongoDB support for Koishi", - "version": "4.10.2", + "version": "4.10.3", "main": "lib/index.js", "typings": "lib/index.d.ts", "files": [ @@ -43,12 +43,12 @@ } }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "dependencies": { - "@minatojs/driver-mongo": "^2.10.2" + "@minatojs/driver-mongo": "^2.10.3" } } diff --git a/plugins/database/mysql/package.json b/plugins/database/mysql/package.json index dcd57c3af4..fb2ff7a5d2 100644 --- a/plugins/database/mysql/package.json +++ b/plugins/database/mysql/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/plugin-database-mysql", "description": "MySQL support for Koishi", - "version": "5.7.2", + "version": "5.7.3", "main": "lib/index.js", "typings": "lib/index.d.ts", "files": [ @@ -42,12 +42,12 @@ } }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "dependencies": { - "@minatojs/driver-mysql": "^2.7.2" + "@minatojs/driver-mysql": "^2.7.3" } } diff --git a/plugins/database/postgres/package.json b/plugins/database/postgres/package.json index 5c4cb7b423..20129ed3b5 100644 --- a/plugins/database/postgres/package.json +++ b/plugins/database/postgres/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/plugin-database-postgres", "description": "PostgreSQL support for Koishi", - "version": "1.0.3", + "version": "1.1.0", "main": "lib/index.js", "typings": "lib/index.d.ts", "files": [ @@ -43,12 +43,12 @@ } }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "dependencies": { - "@minatojs/driver-postgres": "^1.0.3" + "@minatojs/driver-postgres": "^1.1.0" } } diff --git a/plugins/database/sqlite/package.json b/plugins/database/sqlite/package.json index 88e414bf5d..90634151b6 100644 --- a/plugins/database/sqlite/package.json +++ b/plugins/database/sqlite/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/plugin-database-sqlite", "description": "SQLite support for Koishi", - "version": "3.8.2", + "version": "3.8.3", "main": "lib/index.js", "module": "lib/index.mjs", "typings": "lib/index.d.ts", @@ -51,12 +51,12 @@ } }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "dependencies": { - "@minatojs/driver-sqlite": "^3.8.2" + "@minatojs/driver-sqlite": "^3.8.3" } } diff --git a/plugins/hmr/package.json b/plugins/hmr/package.json index d9b039ceaf..f725743be9 100644 --- a/plugins/hmr/package.json +++ b/plugins/hmr/package.json @@ -42,13 +42,13 @@ } }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { "@types/babel__code-frame": "^7.0.6", "@types/throttle-debounce": "^2.1.0", "esbuild": "^0.18.20", - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "dependencies": { "@babel/code-frame": "^7.23.5", diff --git a/plugins/mock/package.json b/plugins/mock/package.json index b120a95d66..7513240512 100644 --- a/plugins/mock/package.json +++ b/plugins/mock/package.json @@ -41,10 +41,10 @@ } }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { "@koishijs/plugin-server": "^3.1.3", - "koishi": "^4.16.0" + "koishi": "^4.16.1" } } diff --git a/plugins/server/package.json b/plugins/server/package.json index 52f0401bf4..ad98344309 100644 --- a/plugins/server/package.json +++ b/plugins/server/package.json @@ -41,10 +41,10 @@ } }, "peerDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "devDependencies": { - "koishi": "^4.16.0" + "koishi": "^4.16.1" }, "dependencies": { "@cordisjs/server": "^0.1.3"