From df2e648f96661fc8a62c7ba8f9b32087d575bdec Mon Sep 17 00:00:00 2001 From: Aravind Krishnamoorthy Date: Sat, 19 Aug 2023 13:16:36 -0500 Subject: [PATCH] Version 1.0 --- docs/conf.py | 4 ++-- ezff/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 686ad2f..5e69222 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,9 +27,9 @@ author = 'Aravind Krishnamoorthy' # The short X.Y version -version = '0.9.5' +version = '1.0.0' # The full version, including alpha/beta/rc tags -release = '0.9 Beta' +release = '1.0' # -- General configuration --------------------------------------------------- diff --git a/ezff/__init__.py b/ezff/__init__.py index 213a3c5..ef57463 100644 --- a/ezff/__init__.py +++ b/ezff/__init__.py @@ -41,7 +41,7 @@ -__version__ = '0.9.5' # Update setup.py if version changes +__version__ = '1.0.0' # Update setup.py if version changes class FFParam(object): diff --git a/setup.py b/setup.py index 53d36b8..cc93218 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup(name='EZFF', - version='0.9.5', # Update __init__.py if the version changes! + version='1.0.0', # Update __init__.py if the version changes! description='Multiobjective forcefield optimization for Molecular Dynamics', author='Aravind Krishnamoorthy', author_email='arvk@users.noreply.github.com',