Skip to content

Commit

Permalink
v2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jrkerns committed May 12, 2021
1 parent 4a876cd commit 0c000c6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/source/changelog.rst
Expand Up @@ -10,7 +10,7 @@ Bug Fixes
^^^^^^^^^

* `#391 <https://github.com/jrkerns/pylinac/issues/391>`_ If the valleys between ROIs on VMAT tests were too deep the field center was not being calculated correctly.
* `#388 <https://github.com/jrkerns/pylinac/issues/388>`_ The ``results()`` method for planar imaging was returing a list of strings, not a string.
* `#388 <https://github.com/jrkerns/pylinac/issues/388>`_ The ``results()`` method for planar imaging was returning a list of strings, not a string.


v 2.5.0
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -74,9 +74,9 @@
# built documents.
#
# The short X.Y version.
version = '2.4'
version = '2.5'
# The full version, including alpha/beta/rc tags.
release = '2.4.0'
release = '2.5.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions pylinac/__init__.py
@@ -1,8 +1,8 @@

import sys

__version__ = '2.5.0.0'
__version_info__ = (2, 5, 0, 0)
__version__ = '2.5.1.0'
__version_info__ = (2, 5, 1, 0)

# check python version
if sys.version_info[0] < 3 or sys.version_info[1] < 6:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -3,7 +3,7 @@
with open('requirements.txt') as f:
required = f.read().splitlines()

__version__ = '2.5.0.0'
__version__ = '2.5.1.0'


setup(
Expand Down

0 comments on commit 0c000c6

Please sign in to comment.