Skip to content

Commit

Permalink
🔖 version 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RF-Tar-Railt committed Mar 11, 2024
1 parent 16b1bb9 commit 20f1538
Show file tree
Hide file tree
Showing 9 changed files with 217 additions and 628 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Build Package
run: |
pdm mina build client
export MINA_BUILD_TARGET=client && pdm mina build client
- name: Publish Package
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Build Package
run: |
pdm mina build core
export MINA_BUILD_TARGET=core && pdm mina build core
- name: Publish Package
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Build Package
run: |
pdm mina build server
export MINA_BUILD_TARGET=server && pdm mina build server
- name: Publish Package
run: |
Expand Down
2 changes: 1 addition & 1 deletion .mina/client.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
includes = ["src/satori/client"]
raw-dependencies = ["satori-python-core >= 0.9.2"]
raw-dependencies = ["satori-python-core >= 0.10.0"]

[project]
name = "satori-python-client"
Expand Down
2 changes: 1 addition & 1 deletion .mina/server.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
includes = ["src/satori/server"]
raw-dependencies = ["satori-python-core >= 0.9.2"]
raw-dependencies = ["satori-python-core >= 0.10.0"]

[project]
name = "satori-python-server"
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ ci:
autoupdate_commit_msg: ":arrow_up: auto update by pre-commit hooks"
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.276
rev: v0.3.2
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
stages: [commit]

- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
stages: [commit]

- repo: https://ghproxy.com/github.com/psf/black
rev: 23.3.0
rev: 24.2.0
hooks:
- id: black
stages: [commit]
802 changes: 195 additions & 607 deletions pdm.lock

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ authors = [
]
dynamic = ["version"]
dependencies = [
"aiohttp>=3.8.6",
"aiohttp>=3.9.3",
"loguru>=0.7.2",
"launart>=0.8.2",
"typing-extensions>=4.8.0",
"graia-amnesia>=0.8.2",
"starlette>=0.32.0.post1",
"uvicorn[standard]>=0.24.0.post1",
"yarl>=1.9.3",
"typing-extensions>=4.10.0",
"graia-amnesia>=0.9.0",
"starlette>=0.37.2",
"uvicorn[standard]>=0.28.0",
"yarl>=1.9.4",
]
requires-python = ">=3.9"
readme = "README.md"
Expand All @@ -40,13 +40,13 @@ build-backend = "mina.backend"

[tool.pdm.dev-dependencies]
dev = [
"isort>=5.12.0",
"black>=23.11.0",
"ruff>=0.1.5",
"pre-commit>=3.5.0",
"isort>=5.13.2",
"black>=24.2.0",
"ruff>=0.3.2",
"pre-commit>=3.6.2",
"fix-future-annotations>=0.5.0",
"mina-build>=0.5.2",
"pdm-mina>=0.3.1",
"mina-build>=0.6.1",
"pdm-mina>=0.3.2",
]


Expand Down
3 changes: 2 additions & 1 deletion src/satori/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from .element import Italic as Italic
from .element import Link as Link
from .element import Message as Message
from .element import Paragraph as Paragraph
from .element import Quote as Quote
from .element import Sharp as Sharp
from .element import Spoiler as Spoiler
Expand All @@ -38,4 +39,4 @@
from .model import Role as Role
from .model import User as User

__version__ = "0.9.2"
__version__ = "0.10.0"

0 comments on commit 20f1538

Please sign in to comment.