Skip to content

Commit

Permalink
🔖 bump version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yanyongyu committed Feb 24, 2024
1 parent 4596ec3 commit 8cdac03
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": {
"source.fixAll.ruff": true,
"source.organizeImports": true
"source.fixAll.ruff": "explicit",
"source.organizeImports": "explicit"
}
},
"[javascript]": {
Expand Down
30 changes: 15 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,38 @@ build-backend = "pdm.backend"

[project]
name = "nonebot-adapter-console"
version = "0.4.0"
version = "0.5.0"
description = "console adapter for nonebot2"
authors = [
{name = "RF-Tar-Railt",email = "rf_tar_railt@qq.com"},
{name = "MelodyKnit",email = "yanximelody@gmail.com"},
{name = "yanyongyu",email = "yyy@nonebot.dev"},
{ name = "RF-Tar-Railt", email = "rf_tar_railt@qq.com" },
{ name = "MelodyKnit", email = "yanximelody@gmail.com" },
{ name = "yanyongyu", email = "yyy@nonebot.dev" },
]
dependencies = [
"nonechat<1.0.0,>=0.2.0",
"nonebot2<3.0.0,>=2.2.0",
"pydantic>=1.10.0,<3.0.0,!=2.5.0,!=2.5.1",
"typing-extensions>=4.7.1",
"nonechat<1.0.0,>=0.2.0",
"nonebot2<3.0.0,>=2.2.0",
"typing-extensions>=4.7.1",
"pydantic>=1.10.0,<3.0.0,!=2.5.0,!=2.5.1",
]
requires-python = ">=3.8,<4.0"
readme = "README.md"
license = {text = "MIT"}
license = { text = "MIT" }

[tool.pdm.build]
includes = ["nonebot"]

[tool.pdm.dev-dependencies]
dev = [
"isort<5.11,>=5.10.1",
"black<25.0,>=24.0.0",
"nonemoji<0.2,>=0.1.3",
"pre-commit<3.2,>=3.1.0",
"ruff~=0.2.0",
"isort<5.11,>=5.10.1",
"black<25.0,>=24.0.0",
"nonemoji<0.2,>=0.1.3",
"pre-commit<3.2,>=3.1.0",
"ruff~=0.2.0",
]

[tool.black]
line-length = 88
target-version = ["py38", "py39", "py310", "py311"]
target-version = ["py38", "py39", "py310", "py311", "py312"]
include = '\.pyi?$'
extend-exclude = '''
'''
Expand Down

0 comments on commit 8cdac03

Please sign in to comment.