Skip to content

Commit

Permalink
v 2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jrkerns committed Mar 17, 2019
1 parent e246958 commit cba27a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
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.4'
release = '2.2.5'

# 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.2.4'
__version_info__ = (2, 2, 4)
__version__ = '2.2.5'
__version_info__ = (2, 2, 5)

# 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
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

__version__ = '2.2.4'
__version__ = '2.2.5'


setup(
Expand Down

0 comments on commit cba27a6

Please sign in to comment.