Skip to content

Commit

Permalink
chore: bump versions a9
Browse files Browse the repository at this point in the history
  • Loading branch information
GreyElaina committed Oct 20, 2023
1 parent ff84c4d commit dbc8cf7
Show file tree
Hide file tree
Showing 7 changed files with 145 additions and 137 deletions.
2 changes: 1 addition & 1 deletion .mina/console.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ raw-dependencies = [

[project]
name = "avilla-console"
version = "1.0.0a7" # WIP for release.
version = "1.0.0a9" # WIP for release.
authors = [
{name = "RF-Tar-Railt", email = "rf_tar_railt@qq.com"},
]
Expand Down
2 changes: 1 addition & 1 deletion .mina/core.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ includes = [

[project]
name = "avilla-core"
version = "1.0.0a8"
version = "1.0.0a9"
authors = [
{name = "GreyElaina", email = "GreyElaina@outlook.com"},
{name = "BlueGlassBlock", email = "blueglassblock@outlook.com"},
Expand Down
2 changes: 1 addition & 1 deletion .mina/red.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ raw_dependencies = [

[project]
name = "avilla-red"
version = "1.0.0a7"
version = "1.0.0a9"
authors = [
{name = "RF-Tar-Railt", email = "rf_tar_railt@qq.com"}
]
Expand Down
2 changes: 1 addition & 1 deletion .mina/satori.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ raw_dependencies = [

[project]
name = "avilla-satori"
version = "1.0.0a8"
version = "1.0.0a9"
authors = [
{name = "RF-Tar-Railt", email = "rf_tar_railt@qq.com"}
]
Expand Down
2 changes: 1 addition & 1 deletion .mina/standard-qq.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ raw_dependencies = [

[project]
name = "avilla-standard-qq"
version = "1.0.0a7"
version = "1.0.0a9"
authors = [
{name = "GreyElaina", email = "GreyElaina@outlook.com"},
{name = "BlueGlassBlock", email = "blueglassblock@outlook.com"},
Expand Down
2 changes: 1 addition & 1 deletion avilla/core/builtins/command/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def wrapper(func: TCallable) -> TCallable:
target = ExecTarget(func, dispatchers, decorators)
if isinstance(command, str):
mapping = {arg.name: arg.value for arg in Args.from_callable(func)[0]}
mapping.update(args or {})
mapping.update(args or {}) # type: ignore
_command = alconna_from_format(command, mapping, meta, union=False)
_command.reset_namespace(self.__namespace__)
key = _command.name + "".join(
Expand Down
270 changes: 139 additions & 131 deletions pdm.lock

Large diffs are not rendered by default.

0 comments on commit dbc8cf7

Please sign in to comment.