diff --git a/pyproject.toml b/pyproject.toml index f338423..5855dae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "cuvis" -version = "3.5.0.2" +version = "3.5.1.0" description = "CUVIS Python SDK." readme = "README.md" requires-python = ">=3.9" diff --git a/tests/test_general.py b/tests/test_general.py index ed3b2bb..549070b 100644 --- a/tests/test_general.py +++ b/tests/test_general.py @@ -30,7 +30,7 @@ def test_wrapper_version(sdk_initialized): """Test wrapper version retrieval.""" version = cuvis.General.wrapper_version() assert isinstance(version, str) - assert "3.5.0" in version # Current wrapper version + assert "3.5.1" in version # Current wrapper version # def test_sdk_initialization_and_shutdown():