File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,12 +60,12 @@ def test_increment_patch(self):
6060 def test_increment_minor (self ):
6161 """Test incrementing minor version."""
6262 assert increment_version ("1.2.3" , "minor" ) == "1.3.0"
63- assert increment_version ("0.5.25 " , "minor" ) == "0.6.0"
63+ assert increment_version ("0.5.26 " , "minor" ) == "0.6.0"
6464
6565 def test_increment_major (self ):
6666 """Test incrementing major version."""
6767 assert increment_version ("1.2.3" , "major" ) == "2.0.0"
68- assert increment_version ("0.5.25 " , "major" ) == "1.0.0"
68+ assert increment_version ("0.5.26 " , "major" ) == "1.0.0"
6969
7070 def test_increment_with_v_prefix (self ):
7171 """Test incrementing version with v prefix."""
Original file line number Diff line number Diff 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.25 "
8+ assert hud .__version__ == "0.5.26 "
Original file line number Diff line number Diff line change 44
55from __future__ import annotations
66
7- __version__ = "0.5.25 "
7+ __version__ = "0.5.26 "
Original file line number Diff line number Diff line change 11[project ]
22name = " hud-python"
3- version = " 0.5.25 "
3+ version = " 0.5.26 "
44description = " SDK for the HUD platform."
55readme = " README.md"
66requires-python = " >=3.11, <3.13"
You can’t perform that action at this time.
0 commit comments