Skip to content

Commit

Permalink
Update version for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Mar 31, 2022
1 parent fd25f12 commit c47e5de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "quaternion"
version = "2022.3.0"
version = "2022.3.1"
description = "Add a quaternion dtype to NumPy"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


# Set this first for easier replacement
version = "2022.3.0"
version = "2022.3.1"

if "win" in platform.lower() and not "darwin" in platform.lower():
extra_compile_args = ["/O2"]
Expand Down
2 changes: 1 addition & 1 deletion src/quaternion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Copyright (c) 2021, Michael Boyle
# See LICENSE file for details: <https://github.com/moble/quaternion/blob/main/LICENSE>

__version__ = "2022.3.0"
__version__ = "2022.3.1"
__doc_title__ = "Quaternion dtype for NumPy"
__doc__ = "Adds a quaternion dtype to NumPy."
__all__ = ['quaternion',
Expand Down

0 comments on commit c47e5de

Please sign in to comment.