diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9b4171d..26e3401 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+) diff --git a/README.md b/README.md index 0a56e2f..2903af1 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ---

-Development version +Development version PyPI Version PyPI - Python Version Documentation Status @@ -184,7 +184,7 @@ corrresponding version number and commit the modified files (where version numbers were updated). Pushing the tags (a manual process) to the remote will automatically create a new release. Releases are automatically published to PyPI and GitHub when git tags matching the "v*" pattern are created -(e.g. "v0.3.0"), as bumpversion does. +(e.g. "v0.3.1"), as bumpversion does. After bumping version, you can view the tags on the local machine by running ``git tag``. To push the tags to the remote server and trigger the release diff --git a/docs/conf.py b/docs/conf.py index 6c8138c..fbc13c5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ author = 'Sequoia Ploeg' # The full version, including alpha/beta/rc tags -release = '0.3.0' +release = '0.3.1' # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/pyproject.toml b/pyproject.toml index 3959e7d..bd81b86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "PyroLab" -version = "0.3.0" +version = "0.3.1" description = "A framework for using remote lab instruments as local resources built on Pyro5" readme = "README.md" requires-python = ">=3.7" diff --git a/src/pyrolab/__init__.py b/src/pyrolab/__init__.py index a04adf4..8f6983f 100644 --- a/src/pyrolab/__init__.py +++ b/src/pyrolab/__init__.py @@ -42,7 +42,7 @@ __name__ = "PyroLab" __author__ = "CamachoLab" __copyright__ = "Copyright 2020, The PyroLab Project" -__version__ = "0.3.0" +__version__ = "0.3.1" __license__ = "GPLv3+" __maintainer__ = "Sequoia Ploeg" __maintainer_email__ = "sequoia.ploeg@byu.edu" diff --git a/src/pyromonitor/__init__.py b/src/pyromonitor/__init__.py index 15b4784..344c8e8 100644 --- a/src/pyromonitor/__init__.py +++ b/src/pyromonitor/__init__.py @@ -20,7 +20,7 @@ __name__ = "pyromonitor" __author__ = "BYU CamachoLab" __copyright__ = "Copyright 2023, The PyroLab Project" -__version__ = "0.3.0" +__version__ = "0.3.1" __license__ = "GPLv3+" __maintainer__ = "Sequoia Ploeg" __maintainer_email__ = "sequoiac@byu.edu"