diff --git a/CHANGELOG.md b/CHANGELOG.md index c3a5c9b..8087a3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.0.2 + +* Add ERKALE and GAMESS output modes +* Print logs for wrong user inputs + ## v1.0.1 * Documentation update diff --git a/docs/conf.py b/docs/conf.py index 52a5ecb..7d9350e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,7 +11,7 @@ author = 'Wanja Schulze' copyright = '2020-2021, Wanja Schulze' version = '1.0' -release = '1.0.1' +release = '1.0.2' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 9df696c..6583507 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='var_mesh', - version='1.0.1', + version='1.0.2', description='Variational Mesh', long_description=long_description, long_description_content_type='text/markdown', diff --git a/var_mesh/__init__.py b/var_mesh/__init__.py index b1651fb..8cace57 100644 --- a/var_mesh/__init__.py +++ b/var_mesh/__init__.py @@ -2,4 +2,4 @@ from var_mesh.helpers import plot_mesh_2d, plot_mesh_3d __all__ = ['ang_grids', 'plot_mesh_2d', 'plot_mesh_3d', 'var_mesh'] -__version__ = '1.0.1' +__version__ = '1.0.2'