Skip to content

Commit

Permalink
Bump version: 0.3.0 → 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sequoia Ploeg committed May 11, 2023
1 parent 030c9be commit ddfff0a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.3.1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
---

<p align="center">
<img alt="Development version" src="https://img.shields.io/badge/master-v0.3.0-informational">
<img alt="Development version" src="https://img.shields.io/badge/master-v0.3.1-informational">
<a href="https://pypi.python.org/pypi/pyrolab"><img alt="PyPI Version" src="https://img.shields.io/pypi/v/pyrolab.svg"></a>
<img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/pyrolab">
<a href="https://pyrolab.readthedocs.io/"><img alt="Documentation Status" src="https://readthedocs.org/projects/pyrolab/badge/?version=latest"></a>
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/pyrolab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/pyromonitor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit ddfff0a

Please sign in to comment.