From 34cf646b041dcf4cc3afa4c65198e9dab0896d1d Mon Sep 17 00:00:00 2001 From: CalCraven Date: Thu, 20 Jun 2024 15:48:22 -0500 Subject: [PATCH] Bump to version 0.12.2 --- 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 fe9733523..79f4f1449 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 D. Quach, Ryan S. DeFever, Justin Gilmer" # The full version, including alpha/beta/rc tags -version = "0.12.1" -release = "0.12.1" +version = "0.12.2" +release = "0.12.2" # -- General configuration --------------------------------------------------- diff --git a/gmso/__init__.py b/gmso/__init__.py index 94d69773b..22e92adf2 100644 --- a/gmso/__init__.py +++ b/gmso/__init__.py @@ -17,4 +17,4 @@ from .core.pairpotential_type import PairPotentialType from .core.topology import Topology -__version__ = "0.12.1" +__version__ = "0.12.2" diff --git a/setup.cfg b/setup.cfg index 2ca3f583d..46cde4179 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.1 +current_version = 0.12.2 commit = True tag = True message = Bump to version {new_version} diff --git a/setup.py b/setup.py index ad0719849..97638d79d 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages, setup ##################################### -VERSION = "0.12.1" +VERSION = "0.12.2" ISRELEASED = False if ISRELEASED: __version__ = VERSION