From 55e634d434a07d8232a843be03a0e2ebc996e0be Mon Sep 17 00:00:00 2001 From: Umesh Timalsina Date: Tue, 2 Feb 2021 12:23:44 -0600 Subject: [PATCH] Bump to version 0.4.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 0cbbca60d..c12de8eb8 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.1' -release = '0.3.1' +version = '0.4.0' +release = '0.4.0' # -- General configuration --------------------------------------------------- diff --git a/gmso/__init__.py b/gmso/__init__.py index 38dd705cc..368cf198c 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.1" +__version__ = "0.4.0" diff --git a/setup.cfg b/setup.cfg index 60d5602fa..d37136064 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.4.0 commit = True tag = True message = Bump to version {new_version} diff --git a/setup.py b/setup.py index b45a1e6b7..3313530c6 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from pathlib import Path ##################################### -VERSION = "0.3.1" +VERSION = "0.4.0" ISRELEASED = False if ISRELEASED: __version__ = VERSION