diff --git a/mosdef_gomc/__init__.py b/mosdef_gomc/__init__.py index c6041990..a13da8f0 100644 --- a/mosdef_gomc/__init__.py +++ b/mosdef_gomc/__init__.py @@ -2,4 +2,4 @@ from mosdef_gomc.formats.charmm_writer import Charmm from mosdef_gomc.formats.gomc_conf_writer import GOMCControl -__version__ = "0.0.1" +__version__ = "0.1.0" diff --git a/setup.cfg b/setup.cfg index fc8636d6..f51c05cf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,23 +1,23 @@ [bumpversion] -current_version = 0.0.1 +current_version = 0.1.0 commit = True tag = True message = Bump to version {new_version} tag_name = {new_version} [coverage:run] -omit = +omit = mosdef_gomc/tests/* [coverage:report] -exclude_lines = +exclude_lines = pragma: no cover - + if 0: if __name__ == .__main__.: def __repr__ except ImportError -omit = +omit = mosdef_gomc/tests/* [bumpversion:file:mosdef_gomc/__init__.py] diff --git a/setup.py b/setup.py index 1d29162a..0fe350db 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ ##################################### NAME = "mosdef_gomc" -VERSION = "0.0.1" +VERSION = "0.1.0" ISRELEASED = True if ISRELEASED: __version__ = VERSION