Skip to content

Commit e681756

Browse files
committed
chore: release
1 parent 5558a86 commit e681756

File tree

4 files changed

+128
-130
lines changed

4 files changed

+128
-130
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "Play audio through your microphone in games using hotkeys"
1212
name = "muc"
1313
readme = "README.md"
1414
requires-python = ">=3.13"
15-
version = "0.5.0"
15+
version = "0.5.1"
1616

1717
[project.optional-dependencies]
1818
yt-dlp = ["yt-dlp>=2025.12.8"]

src/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def get_soundboard() -> tuple[Soundboard, AudioManager]:
8787
@click.group(invoke_without_command=True)
8888
@click.option("--debug", is_flag=True, help="Enable debug logging")
8989
@click.pass_context
90-
@click.version_option(version="0.5.0", prog_name="muc")
90+
@click.version_option(version="0.5.1", prog_name="muc")
9191
def cli(ctx: click.Context, debug: bool) -> None:
9292
"""[bold cyan]MUC Soundboard[/bold cyan].
9393

tests/integration/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,4 +360,4 @@ def test_cli_version(self, cli_runner: CliRunner) -> None:
360360
result = cli_runner.invoke(cli, ["--version"])
361361

362362
assert result.exit_code == 0
363-
assert "0.5.0" in result.output
363+
assert "0.5.1" in result.output

0 commit comments

Comments
 (0)