Skip to content

Commit

Permalink
Doc updates and version bump to 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jrkerns committed Nov 16, 2018
1 parent c368223 commit a4bb9d0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
Changelog
=========

V 2.2.1
-------

Bug Fixes
^^^^^^^^^

* `#153 <https://github.com/jrkerns/pylinac/issues/153>`_ Log analyser PDF publishing fix.
* `#155 <https://github.com/jrkerns/pylinac/issues/155>`_ VMAT PDF report had tolerance listed incorrectly (absolute vs percentage) causing most tolerances to appear as zero.

V 2.2.0
-------

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions pylinac/__init__.py
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

__version__ = '2.2.0'
__version__ = '2.2.1'


setup(
Expand Down

0 comments on commit a4bb9d0

Please sign in to comment.