host short flag updated from -h to -H.

bump clypi dep version.

patch bump.
This commit is contained in:
2026-07-23 15:07:43 +01:00
parent f112760a74
commit da3304cd3a
4 changed files with 5 additions and 5 deletions

View File

@@ -80,7 +80,7 @@ Usage: q3rcon-cli [OPTIONS] COMMAND
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
┏━ Connection options ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ -h, --host <HOST> The host to connect to ┃
┃ -H, --host <HOST> The host to connect to ┃
┃ -p, --port <PORT> The port to connect to ┃
┃ -P, --password <PASSWORD> The password for authentication ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛

View File

@@ -20,7 +20,7 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["aio-q3-rcon>=1.0.1", "clypi>=1.8.2"]
dependencies = ["aio-q3-rcon>=1.0.1", "clypi>=1.9.1"]
[project.scripts]
q3rcon-cli = "q3rcon_cli.cli:main"
@@ -34,7 +34,7 @@ Source = "https://github.com/onyx-and-iris/q3rcon-cli"
path = "src/q3rcon_cli/__about__.py"
[tool.hatch.envs.default]
workspace.members = [{ path = "../aio-q3-rcon" }]
workspace.members = [{ path = "../aio-q3-rcon" }] #, { path = "../clypi" }]
[tool.hatch.envs.types]
extra-dependencies = ["mypy>=1.0.0"]

View File

@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2026-present onyx-and-iris <code@onyxandiris.online>
#
# SPDX-License-Identifier: MIT
__version__ = '0.4.0'
__version__ = '0.4.1'

View File

@@ -13,7 +13,7 @@ class Q3rconCli(Command):
subcommand: Subcommands | None = None
host: str = arg(
'localhost',
short='h',
short='H',
help='The host to connect to',
env='Q3RCON_CLI_HOST',
group='Connection',