From 90eed008b65ddfec699ec418cb3a7f140ee9009f Mon Sep 17 00:00:00 2001 From: CalCraven Date: Fri, 13 Dec 2024 10:34:43 -0600 Subject: [PATCH] Bump to version 1.1.0 --- docs/conf.py | 4 ++-- mbuild/__init__.py | 2 +- setup.cfg | 10 +++++----- setup.py | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 4a777e90a..091a23c5b 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -158,8 +158,8 @@ # built documents. # -version = "1.0.0" -release = "1.0.0" +version = "1.1.0" +release = "1.1.0" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/mbuild/__init__.py b/mbuild/__init__.py index f1e9084fc..ff3fb1195 100644 --- a/mbuild/__init__.py +++ b/mbuild/__init__.py @@ -13,4 +13,4 @@ from mbuild.port import Port from mbuild.recipes import recipes -__version__ = "1.0.0" +__version__ = "1.1.0" diff --git a/setup.cfg b/setup.cfg index fe4db44eb..96406a9d4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,24 +1,24 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.1.0 commit = True tag = True message = Bump to version {new_version} tag_name = {new_version} [coverage:run] -omit = +omit = mbuild/examples/* mbuild/tests/* [coverage:report] -exclude_lines = +exclude_lines = pragma: no cover - + if 0: if __name__ == .__main__.: def __repr__ except ImportError -omit = +omit = mbuild/examples/* mbuild/tests/* diff --git a/setup.py b/setup.py index 12defd00b..3e647dd2b 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ ##################################### NAME = "mbuild" -VERSION = "1.0.0" +VERSION = "1.1.0" ISRELEASED = True if ISRELEASED: __version__ = VERSION