Skip to content

Commit

Permalink
chore: 发布 0.9.0 (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
st1020 authored Nov 6, 2023
1 parent 6ebe175 commit 5c05641
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 22 deletions.
1 change: 1 addition & 0 deletions .release.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def write_version_json(file: Path, version: str) -> None:
json_file["version"] = version
with file.open("w", encoding="utf-8") as f:
json.dump(json_file, f, indent=2)
f.write("\n")


def write_version_toml(file: Path, version: str, *, is_package: bool = False) -> None:
Expand Down
14 changes: 14 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ sidebar: auto

# 更新日志

## [0.9.0](https://github.com/AliceBotProject/alicebot/compare/v0.8.1...v0.9.0) (2023-10-28)

### Bug Fixes

- 修复一些类型检查错误 ([#93](https://github.com/AliceBotProject/alicebot/issues/93)) ([fc48118](https://github.com/AliceBotProject/alicebot/commit/fc48118ce8b0fd6f8a83a0c91bc15f7573b5e769))
- 修复在 Python 3.8 和 3.9 下的错误 ([815a7a6](https://github.com/AliceBotProject/alicebot/commit/815a7a61a0506b4c7b9992cc1975ec8394611b6d))
- 修复在 Python 3.8 和 3.9 下的错误 ([6bdcedd](https://github.com/AliceBotProject/alicebot/commit/6bdceddfec1a5a52c6293e9332b0a66fd4a73641))
- **mirai:** 修复拼写错误 ([#91](https://github.com/AliceBotProject/alicebot/issues/91)) ([e653af7](https://github.com/AliceBotProject/alicebot/commit/e653af7cc67e9070df51eb26ef21429341d15730))

### Features

- **bot:** 修改部分日志输出 ([#85](https://github.com/AliceBotProject/alicebot/issues/85)) ([c07b68a](https://github.com/AliceBotProject/alicebot/commit/c07b68aa0ba4e456eda1aa4871ca4c370a660c38))
- **plugin:** 支持在运行时读取插件类的泛型参数以获取初始化状态和插件配置类 ([#98](https://github.com/AliceBotProject/alicebot/issues/98)) ([c20e7bb](https://github.com/AliceBotProject/alicebot/commit/c20e7bbeef980c7f60ad472ce17b8ab98dc92383))

## [0.8.1](https://github.com/AliceBotProject/alicebot/compare/v0.8.0...v0.8.1) (2023-08-27)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alicebot",
"version": "0.8.1",
"version": "0.9.0",
"description": "A simple asynchronous python chat bot framework.",
"private": true,
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions packages/alicebot-adapter-apscheduler/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "alicebot-adapter-apscheduler"
version = "0.8.1"
version = "0.9.0"
description = "APScheduler adapter for AliceBot."
authors = [{ name = "st1020", email = "[email protected]" }]
license = { text = "MIT" }
Expand All @@ -17,7 +17,7 @@ classifiers = [
"Topic :: Communications :: Chat",
]
requires-python = ">=3.8"
dependencies = ["alicebot==0.8.1", "apscheduler>=3.7,<4.0"]
dependencies = ["alicebot==0.9.0", "apscheduler>=3.7,<4.0"]

[project.urls]
Homepage = "https://docs.alicebot.dev/"
Expand Down
4 changes: 2 additions & 2 deletions packages/alicebot-adapter-cqhttp/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "alicebot-adapter-cqhttp"
version = "0.8.1"
version = "0.9.0"
description = "OneBot(CQHTTP) adapter for AliceBot."
authors = [{ name = "st1020", email = "[email protected]" }]
license = { text = "MIT" }
Expand All @@ -17,7 +17,7 @@ classifiers = [
"Topic :: Communications :: Chat",
]
requires-python = ">=3.8"
dependencies = ["alicebot==0.8.1"]
dependencies = ["alicebot==0.9.0"]

[project.urls]
Homepage = "https://docs.alicebot.dev/"
Expand Down
4 changes: 2 additions & 2 deletions packages/alicebot-adapter-dingtalk/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "alicebot-adapter-dingtalk"
version = "0.8.1"
version = "0.9.0"
description = "DingTalk adapter for AliceBot."
authors = [{ name = "st1020", email = "[email protected]" }]
license = { text = "MIT" }
Expand All @@ -17,7 +17,7 @@ classifiers = [
"Topic :: Communications :: Chat",
]
requires-python = ">=3.8"
dependencies = ["alicebot==0.8.1"]
dependencies = ["alicebot==0.9.0"]

[project.urls]
Homepage = "https://docs.alicebot.dev/"
Expand Down
4 changes: 2 additions & 2 deletions packages/alicebot-adapter-mirai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "alicebot-adapter-mirai"
version = "0.8.1"
version = "0.9.0"
description = "Mirai adapter for AliceBot."
authors = [{ name = "st1020", email = "[email protected]" }]
license = { text = "AGPL-3.0-or-later" }
Expand All @@ -17,7 +17,7 @@ classifiers = [
"Topic :: Communications :: Chat",
]
requires-python = ">=3.8"
dependencies = ["alicebot==0.8.1"]
dependencies = ["alicebot==0.9.0"]

[project.urls]
Homepage = "https://docs.alicebot.dev/"
Expand Down
4 changes: 2 additions & 2 deletions packages/alicebot-adapter-onebot/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "alicebot-adapter-onebot"
version = "0.8.1"
version = "0.9.0"
description = "OneBot v12 adapter for AliceBot."
authors = [{ name = "st1020", email = "[email protected]" }]
license = { text = "MIT" }
Expand All @@ -17,7 +17,7 @@ classifiers = [
"Topic :: Communications :: Chat",
]
requires-python = ">=3.8"
dependencies = ["alicebot==0.8.1"]
dependencies = ["alicebot==0.9.0"]

[project.urls]
Homepage = "https://docs.alicebot.dev/"
Expand Down
20 changes: 10 additions & 10 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "alicebot"
version = "0.8.1"
version = "0.9.0"
description = "A simply asynchronous python chatbot framework."
authors = [{ name = "st1020", email = "[email protected]" }]
license = { text = "MIT" }
Expand Down

0 comments on commit 5c05641

Please sign in to comment.