Skip to content

Commit 9f1b2cb

Browse files
committed
chore: release 0.5.0
1 parent c05105e commit 9f1b2cb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.4.0"
15+
version = "0.5.0"
1616

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

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.4.0", prog_name="muc")
90+
@click.version_option(version="0.5.0", 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.4.0" in result.output
363+
assert "0.5.0" in result.output

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)