Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Feb 8, 2024
1 parent 61c7d2c commit 3e79a4f
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 33 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Unit Test
run: yarn test:json
- name: Report Coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/coverage-final.json
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@
"shx": "^0.3.4",
"source-map-support": "^0.5.21",
"typescript": "^5.3.2",
"yakumo": "^1.0.0-beta.4",
"yakumo": "^1.0.0-beta.6",
"yakumo-esbuild": "^1.0.0-beta.2",
"yakumo-mocha": "^1.0.0-beta.2",
"yakumo-tsc": "^1.0.0-beta.2",
"yakumo-tsc": "^1.0.0-beta.3",
"yml-register": "^1.1.0"
}
}
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": "@koishijs/core",
"description": "Core Features for Koishi",
"version": "4.16.8",
"version": "4.17.0-alpha.0",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -34,7 +34,7 @@
"@koishijs/i18n-utils": "^1.0.1",
"@koishijs/utils": "^7.1.2",
"@satorijs/core": "^3.5.3",
"cordis": "^3.9.1",
"cordis": "^3.9.2",
"cosmokit": "^1.5.2",
"fastest-levenshtein": "^1.0.16",
"minato": "^3.0.0-alpha.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/koishi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "koishi",
"description": "Cross-Platform Chatbot Framework Made with Love",
"version": "4.16.8",
"version": "4.17.0-alpha.0",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions packages/loader/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@koishijs/loader",
"description": "Config Loader for Koishi",
"version": "4.4.4",
"version": "4.5.0-alpha.0",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -45,10 +45,10 @@
"config"
],
"peerDependencies": {
"@koishijs/core": "4.16.8"
"@koishijs/core": "4.17.0-alpha.0"
},
"devDependencies": {
"@koishijs/core": "4.16.8",
"@koishijs/core": "4.17.0-alpha.0",
"@types/js-yaml": "^4.0.9"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/loader/src/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ interface StartMessage {
content: string
}

declare module 'cordis' {
declare module '@cordisjs/core' {
// Theoretically, these properties will only appear on `ForkScope`.
// We define them directly on `EffectScope` for typing convenience.
interface EffectScope<C> {
Expand Down
5 changes: 2 additions & 3 deletions plugins/common/bind/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,10 @@
]
},
"peerDependencies": {
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
},
"devDependencies": {
"@koishijs/plugin-database-memory": "^2.6.0",
"@koishijs/plugin-mock": "^2.6.5",
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
}
}
5 changes: 2 additions & 3 deletions plugins/common/broadcast/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,10 @@
]
},
"peerDependencies": {
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
},
"devDependencies": {
"@koishijs/plugin-database-memory": "^2.6.0",
"@koishijs/plugin-mock": "^2.6.5",
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
}
}
5 changes: 2 additions & 3 deletions plugins/common/callme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,10 @@
]
},
"peerDependencies": {
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
},
"devDependencies": {
"@koishijs/plugin-database-memory": "^2.6.0",
"@koishijs/plugin-mock": "^2.6.5",
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
}
}
4 changes: 2 additions & 2 deletions plugins/common/echo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
]
},
"peerDependencies": {
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
},
"devDependencies": {
"@koishijs/plugin-mock": "^2.6.5",
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
}
}
5 changes: 2 additions & 3 deletions plugins/common/help/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,10 @@
]
},
"peerDependencies": {
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
},
"devDependencies": {
"@koishijs/plugin-database-memory": "^2.6.0",
"@koishijs/plugin-mock": "^2.6.5",
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
}
}
4 changes: 2 additions & 2 deletions plugins/common/inspect/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
]
},
"peerDependencies": {
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
},
"devDependencies": {
"@koishijs/plugin-mock": "^2.6.5",
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
}
}
4 changes: 2 additions & 2 deletions plugins/hmr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@
}
},
"peerDependencies": {
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
},
"devDependencies": {
"@types/babel__code-frame": "^7.0.6",
"esbuild": "^0.18.20",
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
},
"dependencies": {
"@babel/code-frame": "^7.23.5",
Expand Down
4 changes: 2 additions & 2 deletions plugins/mock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
}
},
"peerDependencies": {
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
},
"devDependencies": {
"@koishijs/plugin-server": "^3.1.7",
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
}
}
6 changes: 3 additions & 3 deletions plugins/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cordisjs/server.git",
"url": "git+https://github.com/cordiverse/server.git",
"directory": "packages/core"
},
"bugs": {
Expand Down Expand Up @@ -51,10 +51,10 @@
}
},
"peerDependencies": {
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
},
"devDependencies": {
"koishi": "^4.16.8"
"koishi": "^4.17.0-alpha.0"
},
"dependencies": {
"@cordisjs/server": "^0.1.7"
Expand Down

0 comments on commit 3e79a4f

Please sign in to comment.