File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,12 +61,12 @@ 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.31 " , "minor" ) == "0.6.0"
64+ assert increment_version ("0.5.32 " , "minor" ) == "0.6.0"
6565
6666 def test_increment_major (self ):
6767 """Test incrementing major version."""
6868 assert increment_version ("1.2.3" , "major" ) == "2.0.0"
69- assert increment_version ("0.5.31 " , "major" ) == "1.0.0"
69+ assert increment_version ("0.5.32 " , "major" ) == "1.0.0"
7070
7171 def test_increment_with_v_prefix (self ):
7272 """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.31 "
8+ assert hud .__version__ == "0.5.32 "
Original file line number Diff line number Diff line change 44
55from __future__ import annotations
66
7- __version__ = "0.5.31 "
7+ __version__ = "0.5.32 "
Original file line number Diff line number Diff line change 11[project ]
22name = " hud-python"
3- version = " 0.5.31 "
3+ version = " 0.5.32 "
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