diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index efd23d657..7376a2a8a 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -10,7 +10,7 @@ Bug Fixes ^^^^^^^^^ * `#391 `_ If the valleys between ROIs on VMAT tests were too deep the field center was not being calculated correctly. -* `#388 `_ The ``results()`` method for planar imaging was returing a list of strings, not a string. +* `#388 `_ The ``results()`` method for planar imaging was returning a list of strings, not a string. v 2.5.0 diff --git a/docs/source/conf.py b/docs/source/conf.py index 0fb4eedf3..a966b8e2f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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. diff --git a/pylinac/__init__.py b/pylinac/__init__.py index 8d93be178..c1ffaab2a 100644 --- a/pylinac/__init__.py +++ b/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: diff --git a/setup.py b/setup.py index 9af08c696..6bcf819f8 100644 --- a/setup.py +++ b/setup.py @@ -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(