Skip to content

Commit 6c0220c

Browse files
committed
update to v2.0.1
1 parent 5286597 commit 6c0220c

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.bumpversion.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[bumpversion]
2-
current_version = 2.0.0
2+
current_version = 2.0.1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)?
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}
88

99
[bumpversion:file:./setup.py]

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
**************************
2-
SiPANN 2.0.0
2+
SiPANN 2.0.1
33
**************************
44
.. image:: https://img.shields.io/pypi/v/SiPANN.svg
55
:target: https://pypi.python.org/pypi/SiPANN
@@ -95,8 +95,8 @@ Bibtex citation
9595
Releasing
9696
=========
9797

98-
Make sure you have committed a changelog file titled
99-
"[major].[minor].[patch]-changelog.md" before bumping version.
98+
Make sure you have committed a changelog file titled
99+
"[major].[minor].[patch]-changelog.md" before bumping version.
100100

101101
To bump version prior to a release, run one of the following commands:
102102

@@ -106,11 +106,11 @@ To bump version prior to a release, run one of the following commands:
106106
bumpversion minor
107107
bumpversion patch
108108
109-
This will automatically create a git tag in the repository with the
109+
This will automatically create a git tag in the repository with the
110110
corrresponding version number and commit the modified files (where version
111-
numbers were updated). Pushing the tags (a manual process) to the remote will
112-
automatically create a new release. Releases are automatically published to
113-
PyPI and GitHub when git tags matching the "v*" pattern are created
111+
numbers were updated). Pushing the tags (a manual process) to the remote will
112+
automatically create a new release. Releases are automatically published to
113+
PyPI and GitHub when git tags matching the "v*" pattern are created
114114
(e.g. "v0.2.1"), as bumpversion does.
115115

116116
To view the tags on the local machine, run :code:`git tag`. To push the tags to

SiPANN/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
photonic device circuits.
66
"""
77

8-
__version__ = "2.0.0"
8+
__version__ = "2.0.1"
99
__author__ = "Easton Potokar, Alec Hammond, R Scott Collings <eastonpost@byu.edu>"
1010
__all__ = []

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
author = "Easton Potokar, R Scott Collings, Alec Hammond"
2222

2323
# The full version, including alpha/beta/rc tags
24-
release = "2.0.0"
24+
release = "2.0.1"
2525

2626

2727
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
# For a discussion on single-sourcing the version across setup.py and the
3939
# project code, see
4040
# https://packaging.python.org/en/latest/single_source_version.html
41-
version="2.0.0", # Required
41+
version="2.0.1", # Required
4242
# This is a one-line description or tagline of what your project does. This
4343
# corresponds to the "Summary" metadata field:
4444
# https://packaging.python.org/specifications/core-metadata/#summary

0 commit comments

Comments
 (0)