Skip to content

Commit

Permalink
🔖 version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RF-Tar-Railt committed Sep 17, 2023
1 parent 880410f commit e44e2e5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Gitai
Copyright (c) 2023 nonebot

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 2 additions & 0 deletions nonebot/adapters/red/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
from .message import MessageSegment as MessageSegment
from .event import GroupMessageEvent as GroupMessageEvent
from .event import PrivateMessageEvent as PrivateMessageEvent

__version__ = "0.3.0"
13 changes: 11 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[project]
name = "nonebot-adapter-red"
version = "0.2.2"
description = "Red Protocol Adapter for Nonebot2"
authors = [
{name = "zhaomaoniu"},
Expand All @@ -12,6 +11,12 @@ dependencies = [
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
dynamic = ["version"]

[project.urls]
homepage = "https://github.com/nonebot/adapter-red"
repository = "https://github.com/nonebot/adapter-red"


[build-system]
requires = ["pdm-backend"]
Expand All @@ -28,6 +33,10 @@ dev = [
[tool.pdm.build]
includes = ["nonebot"]

[tool.pdm.version]
source = "file"
path = "nonebot/adapters/red/__init__.py"

[tool.black]
line-length = 88
target-version = ["py38", "py39", "py310", "py311"]
Expand All @@ -48,4 +57,4 @@ select = ["E", "W", "F", "UP", "C", "T", "PYI", "PT", "Q"]
ignore = ["C901", "T201", "E731"]

line-length = 88
target-version = "py38"
target-version = "py38"

0 comments on commit e44e2e5

Please sign in to comment.