diff --git a/dist/Soar-1.3.7.tar.gz b/dist/Soar-1.3.7.tar.gz new file mode 100644 index 0000000..802fe48 Binary files /dev/null and b/dist/Soar-1.3.7.tar.gz differ diff --git a/docs/source/conf.py b/docs/source/conf.py index ea0a9e5..199bf5e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -67,9 +67,9 @@ def __getattr__(cls, name): # built documents. # # The short X.Y version. -version = '1.3.6' +version = '1.3.7' # The full version, including alpha/beta/rc tags. -release = '1.3.6' +release = '1.3.7' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/soar/__init__.py b/soar/__init__.py index 75581d6..0091fc9 100644 --- a/soar/__init__.py +++ b/soar/__init__.py @@ -15,13 +15,13 @@ # along with this program. If not, see . # # soar/__init__.py -""" Soar (Snakes on a Robot) v1.3.6 +""" Soar (Snakes on a Robot) v1.3.7 An extensible Python framework for both simulating and interacting with robots. Copyright (C) 2017 Andrew Antonitis. Licensed under the LGPLv3. """ -__version__ = '1.3.6' +__version__ = '1.3.7' blerb = 'Soar (Snakes on a Robot) v' + __version__ + ': A Python robotics framework.\n' \ 'https://github.com/arantonitis/soar\n\n' \ 'Copyright (C) 2017 Andrew Antonitis. Licensed under the LGPLv3.' diff --git a/soar/update.py b/soar/update.py index 76e09ba..e74826c 100644 --- a/soar/update.py +++ b/soar/update.py @@ -33,6 +33,9 @@ def version_parse(x): # Parse version increment strings into integers if pypi_inc > current_inc: # If any PyPI version increment is greater, we need to update need_update = True break + elif pypi_inc < current_inc: # If any current version increment is greater, we do not need to update + need_update = False + break if need_update: if pypi_version[3] != inf: pypi_version[3] = 'dev' + str(pypi_version[3])