From c56eaa8950ea4c38c427247e9c7a4d884cd70ccc Mon Sep 17 00:00:00 2001 From: Co Quach Date: Thu, 29 Oct 2020 15:48:41 -0500 Subject: [PATCH] Bump to version 0.3.1 --- 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 fe5788d33..0cbbca60d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,8 +22,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.3.0' -release = '0.3.0' +version = '0.3.1' +release = '0.3.1' # -- General configuration --------------------------------------------------- diff --git a/gmso/__init__.py b/gmso/__init__.py index de623983a..38dd705cc 100644 --- a/gmso/__init__.py +++ b/gmso/__init__.py @@ -17,4 +17,4 @@ from .core.dihedral_type import DihedralType from .core.improper_type import ImproperType -__version__ = "0.3.0" +__version__ = "0.3.1" diff --git a/setup.cfg b/setup.cfg index f262071e6..60d5602fa 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 commit = True tag = True message = Bump to version {new_version} diff --git a/setup.py b/setup.py index 0381455fb..b45a1e6b7 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from pathlib import Path ##################################### -VERSION = "0.3.0" +VERSION = "0.3.1" ISRELEASED = False if ISRELEASED: __version__ = VERSION