diff --git a/pyproject.toml b/pyproject.toml index 85230d7..dab19d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "quaternion" -version = "2022.4.2" +version = "2022.4.3" description = "Add a quaternion dtype to NumPy" readme = "README.md" license = "MIT" diff --git a/setup.py b/setup.py index 9b37da7..92f8b46 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ # Set this first for easier replacement -version = "2022.4.2" +version = "2022.4.3" if "win" in platform.lower() and not "darwin" in platform.lower(): extra_compile_args = ["/O2"] diff --git a/src/quaternion/__init__.py b/src/quaternion/__init__.py index e0a2ecb..69cd1df 100644 --- a/src/quaternion/__init__.py +++ b/src/quaternion/__init__.py @@ -3,7 +3,7 @@ # Copyright (c) 2021, Michael Boyle # See LICENSE file for details: -__version__ = "2022.4.2" +__version__ = "2022.4.3" __doc_title__ = "Quaternion dtype for NumPy" __doc__ = "Adds a quaternion dtype to NumPy." __all__ = ['quaternion',