diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ffa7b95..4e8f63c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,7 @@ +1.0.4 (in progress) +------------------- +- Fix for floating-point error handling (#55) + 1.0.3 (23-01-2023) ------------------ - Added pyproject.toml to fix error introduced in 1.0.2 when installing with pip diff --git a/tfcomb/__init__.py b/tfcomb/__init__.py index 23e5528..7533340 100644 --- a/tfcomb/__init__.py +++ b/tfcomb/__init__.py @@ -1,6 +1,6 @@ from importlib import import_module -__version__ = "1.0.3" +__version__ = "1.0.4-b" #Set classes to be available directly from upper tfcomb, i.e. "from tfcomb import CombObj" global_classes = ["tfcomb.objects.CombObj",