Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Jun 13, 2023
1 parent 0291a27 commit a74ca82
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 15 deletions.
4 changes: 2 additions & 2 deletions adapters/discord/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@satorijs/adapter-discord",
"description": "Discord Adapter for Satorijs",
"version": "3.6.1",
"version": "3.6.2",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand Down Expand Up @@ -29,7 +29,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.3.9"
"@satorijs/satori": "^2.3.10"
},
"dependencies": {
"form-data": "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion adapters/kook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.3.9"
"@satorijs/satori": "^2.3.10"
},
"dependencies": {
"form-data": "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion adapters/lark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.3.9"
"@satorijs/satori": "^2.3.10"
},
"dependencies": {
"form-data": "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion adapters/mail/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.3.9"
"@satorijs/satori": "^2.3.10"
},
"dependencies": {
"@types/mailparser": "^3.4.0",
Expand Down
1 change: 1 addition & 0 deletions adapters/mail/src/message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export class MailMessenger extends Messenger<MailBot> {
reply: string
attachments: Attachment[] = []
figure = false

async flush() {
if (!this.buffer && this.attachments.length === 0) return
const messageId = await this.bot.smtp.send({
Expand Down
2 changes: 1 addition & 1 deletion adapters/onebot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.3.9"
"@satorijs/satori": "^2.3.10"
},
"dependencies": {
"qface": "^1.4.1"
Expand Down
2 changes: 1 addition & 1 deletion adapters/qqguild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.3.9"
"@satorijs/satori": "^2.3.10"
},
"dependencies": {
"@qq-guild-sdk/core": "^2.2.2",
Expand Down
2 changes: 1 addition & 1 deletion adapters/telegram/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.3.9"
"@satorijs/satori": "^2.3.10"
},
"dependencies": {
"form-data": "^4.0.0"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
"shx": "^0.3.4",
"typescript": "^5.0.4",
"yakumo": "^0.3.13",
"yakumo-esbuild": "^0.3.22",
"yakumo-esbuild": "^0.3.25",
"yakumo-mocha": "^0.3.1",
"yakumo-publish": "^0.3.4",
"yakumo-publish-sync": "^0.3.2",
"yakumo-tsc": "^0.3.9",
"yakumo-tsc": "^0.3.12",
"yakumo-upgrade": "^0.3.3",
"yakumo-version": "^0.3.4"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@satorijs/core",
"description": "Core components of Satorijs",
"version": "2.3.9",
"version": "2.3.10",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -39,7 +39,7 @@
"cordis-axios": "^3.1.2",
"cosmokit": "^1.4.2",
"ws": "^8.13.0",
"reggol": "^1.3.5",
"reggol": "^1.4.2",
"schemastery": "^3.9.0"
}
}
2 changes: 1 addition & 1 deletion packages/core/src/universal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export namespace Universal {

// user
getSelf(): Promise<User>
getUser(userId: string): Promise<User>
getUser(userId: string, guildId?: string): Promise<User>
getFriendList(): Promise<User[]>
deleteFriend(userId: string): Promise<void>

Expand Down
4 changes: 2 additions & 2 deletions packages/satori/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@satorijs/satori",
"description": "Core components of Satorijs",
"version": "2.3.9",
"version": "2.3.10",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
Expand Down Expand Up @@ -32,7 +32,7 @@
},
"dependencies": {
"@koa/router": "^10.1.1",
"@satorijs/core": "2.3.9",
"@satorijs/core": "2.3.10",
"@types/koa": "*",
"@types/koa__router": "*",
"@types/ws": "^8.5.4",
Expand Down

0 comments on commit a74ca82

Please sign in to comment.