diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4a3c10f..e5645a2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.3.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+) diff --git a/README.md b/README.md index 78c5ff2..4b7d146 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ---

-Development version +Development version PyPI Version PyPI - Python Version Documentation Status @@ -190,7 +190,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.1"), as bumpversion does. +(e.g. "v0.3.2"), 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 fbc13c5..c912321 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.1' +release = '0.3.2' # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/pyproject.toml b/pyproject.toml index 4f763c2..ceb9a22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyrolab" -version = "0.3.1" +version = "0.3.2" description = "A framework for using remote lab instruments as local resources built on Pyro5." readme = "README.md" requires-python = ">=3.7" diff --git a/pyrolab/__init__.py b/pyrolab/__init__.py index 8f6983f..87a18fd 100644 --- a/pyrolab/__init__.py +++ b/pyrolab/__init__.py @@ -42,7 +42,7 @@ __name__ = "PyroLab" __author__ = "CamachoLab" __copyright__ = "Copyright 2020, The PyroLab Project" -__version__ = "0.3.1" +__version__ = "0.3.2" __license__ = "GPLv3+" __maintainer__ = "Sequoia Ploeg" __maintainer_email__ = "sequoia.ploeg@byu.edu"