From bec1a625fdc6a20b0d4b82ee2c83da0c097cd9ab Mon Sep 17 00:00:00 2001 From: CalCraven Date: Mon, 19 Aug 2024 13:45:42 -0500 Subject: [PATCH] Bump to version 1.0.0 --- docs/source/conf.py | 2 +- foyer/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index ff30b3ad..d0268fc3 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -33,7 +33,7 @@ copyright = "2014-2020, Vanderbilt University" # The short X.Y version -version = "0.12.1" +version = "1.0.0" # The full version, including alpha/beta/rc tags release = version diff --git a/foyer/__init__.py b/foyer/__init__.py index c5347c10..d50fe234 100644 --- a/foyer/__init__.py +++ b/foyer/__init__.py @@ -3,6 +3,6 @@ from foyer.forcefield import Forcefield from foyer.forcefields import forcefields -__version__ = "0.12.1" +__version__ = "1.0.0" __all__ = ("Forcefield", "forcefields", "__version__") diff --git a/setup.cfg b/setup.cfg index 41ce3e56..2743b9e0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.1 +current_version = 1.0.0 commit = True tag = True message = Bump to version {new_version} diff --git a/setup.py b/setup.py index 4b8a0228..99da146a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages, setup ##################################### -VERSION = "0.12.1" +VERSION = "1.0.0" ISRELEASED = True if ISRELEASED: __version__ = VERSION