diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index a8eeaef19..48bb5410a 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,6 +3,15 @@ Changelog ========= +V 2.2.1 +------- + +Bug Fixes +^^^^^^^^^ + +* `#153 `_ Log analyser PDF publishing fix. +* `#155 `_ VMAT PDF report had tolerance listed incorrectly (absolute vs percentage) causing most tolerances to appear as zero. + V 2.2.0 ------- diff --git a/docs/source/conf.py b/docs/source/conf.py index a391ad9e4..d4176d6ca 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -76,7 +76,7 @@ # The short X.Y version. version = '2.2' # The full version, including alpha/beta/rc tags. -release = '2.2.0' +release = '2.2.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 cc8bd70d7..6aaf7c847 100644 --- a/pylinac/__init__.py +++ b/pylinac/__init__.py @@ -1,8 +1,8 @@ import sys -__version__ = '2.2.0' -__version_info__ = (2, 2, 0) +__version__ = '2.2.1' +__version_info__ = (2, 2, 1) # check python version if sys.version_info[0] < 3 or sys.version_info[1] < 6: diff --git a/setup.py b/setup.py index 85d683d26..e0fc20ff4 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -__version__ = '2.2.0' +__version__ = '2.2.1' setup(