Skip to content

Commit 2e53a88

Browse files
committed
chore: release 0.4.0
1 parent 0592c9f commit 2e53a88

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.3.0"
15+
version = "0.4.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
@@ -67,7 +67,7 @@ def get_soundboard() -> tuple[Soundboard, AudioManager]:
6767
@click.group(invoke_without_command=True)
6868
@click.option("--debug", is_flag=True, help="Enable debug logging")
6969
@click.pass_context
70-
@click.version_option(version="0.3.0", prog_name="muc")
70+
@click.version_option(version="0.4.0", prog_name="muc")
7171
def cli(ctx: click.Context, debug: bool) -> None: # noqa: FBT001
7272
"""[bold cyan]MUC Soundboard[/bold cyan].
7373

tests/integration/test_cli.py

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

314314
assert result.exit_code == 0
315-
assert "0.3.0" in result.output
315+
assert "0.4.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)