Skip to content

Commit c47e5de

Browse files
author
github-actions
committed
Update version for new release
1 parent fd25f12 commit c47e5de

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "quaternion"
3-
version = "2022.3.0"
3+
version = "2022.3.1"
44
description = "Add a quaternion dtype to NumPy"
55
readme = "README.md"
66
license = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
# Set this first for easier replacement
20-
version = "2022.3.0"
20+
version = "2022.3.1"
2121

2222
if "win" in platform.lower() and not "darwin" in platform.lower():
2323
extra_compile_args = ["/O2"]

src/quaternion/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (c) 2021, Michael Boyle
44
# See LICENSE file for details: <https://github.com/moble/quaternion/blob/main/LICENSE>
55

6-
__version__ = "2022.3.0"
6+
__version__ = "2022.3.1"
77
__doc_title__ = "Quaternion dtype for NumPy"
88
__doc__ = "Adds a quaternion dtype to NumPy."
99
__all__ = ['quaternion',

0 commit comments

Comments
 (0)