From f5aa91baad84df4a6bd72c8c3d682e3da8e34c1e Mon Sep 17 00:00:00 2001 From: Co Quach Date: Tue, 30 May 2023 12:06:35 -0500 Subject: [PATCH] Bump to version 0.10.0 --- docs/conf.py | 4 ++-- gmso/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index d275e8b02..8cac97507 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,8 +23,8 @@ author = "Matt Thompson, Alex Yang, Ray Matsumoto, Parashara Shamaprasad, Umesh Timalsina, Co Quach, Ryan S. DeFever, Justin Gilmer" # The full version, including alpha/beta/rc tags -version = "0.9.1" -release = "0.9.1" +version = "0.10.0" +release = "0.10.0" # -- General configuration --------------------------------------------------- diff --git a/gmso/__init__.py b/gmso/__init__.py index 63053fc14..5b7571f4e 100644 --- a/gmso/__init__.py +++ b/gmso/__init__.py @@ -15,4 +15,4 @@ from .core.pairpotential_type import PairPotentialType from .core.topology import Topology -__version__ = "0.9.1" +__version__ = "0.10.0" diff --git a/setup.cfg b/setup.cfg index ac7c614a3..9f660a8a6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.1 +current_version = 0.10.0 commit = True tag = True message = Bump to version {new_version} diff --git a/setup.py b/setup.py index b5185c3a3..5ccfb2ac6 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup ##################################### -VERSION = "0.9.1" +VERSION = "0.10.0" ISRELEASED = False if ISRELEASED: __version__ = VERSION