diff --git a/clifford/__init__.py b/clifford/__init__.py index d7b0266f..3b2521bd 100644 --- a/clifford/__init__.py +++ b/clifford/__init__.py @@ -57,7 +57,7 @@ from clifford.io import write_ga_file, read_ga_file -__version__ = '1.0.4' +__version__ = '1.0.5' # The blade finding regex for parsing strings of mvs _blade_pattern = "((^|\s)-?\s?\d+(\.\d+)?)\s|(-\s?(\d+((e(\+|-))|\.)?(\d+)?)\^e\d+(\s|$))|((^|\+)\s?(\d+((e(\+|-))|\.)?(\d+)?)\^e\d+(\s|$))" diff --git a/docs/conf.py b/docs/conf.py index fe28d6fe..98bb7bc6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,7 +17,7 @@ import sphinx_rtd_theme # The short X.Y version. -version = '1.0.4' +version = '1.0.5' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index e5973d6c..b14513df 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages from distutils.core import Extension -VERSION = '1.0.4' +VERSION = '1.0.5' LONG_DESCRIPTION = """ A numerical geometric algebra module for python. BSD License. """