Skip to content

Commit e50e97b

Browse files
committed
bump version
1 parent ea16703 commit e50e97b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

hud/cli/tests/test_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def test_increment_patch(self):
6161
def test_increment_minor(self):
6262
"""Test incrementing minor version."""
6363
assert increment_version("1.2.3", "minor") == "1.3.0"
64-
assert increment_version("0.5.39", "minor") == "0.6.0"
64+
assert increment_version("0.5.40", "minor") == "0.6.0"
6565

6666
def test_increment_major(self):
6767
"""Test incrementing major version."""

hud/utils/tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ def test_import():
55
"""Test that the package can be imported."""
66
import hud
77

8-
assert hud.__version__ == "0.5.39"
8+
assert hud.__version__ == "0.5.40"

hud/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
from __future__ import annotations
66

7-
__version__ = "0.5.39"
7+
__version__ = "0.5.40"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hud-python"
3-
version = "0.5.39"
3+
version = "0.5.40"
44
description = "SDK for the HUD platform."
55
readme = "README.md"
66
requires-python = ">=3.11, <3.13"

0 commit comments

Comments
 (0)