diff --git a/deploy-instructions.rst b/deploy-instructions.rst index 9530b3c..c2ce3c1 100644 --- a/deploy-instructions.rst +++ b/deploy-instructions.rst @@ -4,7 +4,7 @@ Updating the version Places where the version has to be updated: - ./setup.py -- ./pyssian/pyssian.py +- ./pyssian/__init__.py Notes: diff --git a/pyssian/__init__.py b/pyssian/__init__.py index 30ad321..116bfaf 100644 --- a/pyssian/__init__.py +++ b/pyssian/__init__.py @@ -1,3 +1,3 @@ from .gaussianclasses import * -__version__ = '1.0.0' +__version__ = '1.0.1' diff --git a/setup.py b/setup.py index 927a754..e301b87 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ import setuptools -__version__ = '1.0.0' +__version__ = '1.0.1' with open("README.rst", "r") as fh: long_description = fh.read()