diff --git a/pyproject.toml b/pyproject.toml index 607565a..c9ac014 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "quaternion" -version = "2023.0.2" +version = "2023.0.3" description = "Add a quaternion dtype to NumPy" readme = "README.md" license = "MIT" diff --git a/setup.py b/setup.py index 97df8c5..b5b9876 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ # Set this first for easier replacement -version = "2023.0.2" +version = "2023.0.3" # read the contents of the README file into the PyPI description this_directory = Path(__file__).parent diff --git a/src/quaternion/__init__.py b/src/quaternion/__init__.py index 2a4546d..462e5ea 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__ = "2023.0.2" +__version__ = "2023.0.3" __doc_title__ = "Quaternion dtype for NumPy" __doc__ = "Adds a quaternion dtype to NumPy." __all__ = ['quaternion',