Skip to content

Commit

Permalink
Version bump to 1.8.0 (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
Northover committed Jul 31, 2017
1 parent a5a8d00 commit afeb29a
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions dyn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@
Requires Python 2.6 or higher, or the "simplejson" package.
"""
version_info = (1, 7, 10)
version_info = (1, 8, 0)
__name__ = 'dyn'
__doc__ = 'A python wrapper for the DynDNS and DynEmail APIs'
__author__ = 'Jonathan Nappi, Cole Tuininga, Marc Howes, Philip Andrews'
__author__ = '''
Jonathan Nappi,
Cole Tuininga,
Marc Howes,
Philip Andrews,
Robert Northover'''
__version__ = '.'.join([str(x) for x in version_info])
__maintainer__ = 'Marc Howes'
__email__ = 'mhowes@dyn.com'
__maintainer__ = 'Robert Northover'
__email__ = 'rnorthover@dyn.com'
__status__ = 'Stable'
__title__ = '{0} version {1}'.format(__name__, __version__)

0 comments on commit afeb29a

Please sign in to comment.