diff --git a/HISTORY.rst b/HISTORY.rst index 63fac3d2..3fe81b79 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,14 @@ History ------- +0.4.10 (2016-10-24) +__________________ +* Updated history and author + +0.4.9 (2016-10-24) +__________________ +* Add function to get fixed addresses by mac + 0.4.8 (2016-10-10) __________________ * Add ptrdname search option to PtrRecord objects diff --git a/docs/conf.py b/docs/conf.py index 46313b15..7fd01171 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,7 +56,7 @@ # General information about the project. project = u'Infoblox Client' -copyright = u'2015, Pavel Bondar' +copyright = u'2015-2016, Infoblox' # The version info for the project you're documenting, acts as replacement # for |version| and |release|, also used in various other places throughout @@ -210,7 +210,7 @@ latex_documents = [ ('index', 'infoblox-client.tex', u'Infoblox Client Documentation', - u'Pavel Bondar', 'manual'), + u'John Belamaric', 'manual'), ] # The name of an image file (relative to this directory) to place at @@ -241,7 +241,7 @@ man_pages = [ ('index', 'infoblox-client', u'Infoblox Client Documentation', - [u'Pavel Bondar'], 1) + [u'John Belamaric'], 1) ] # If true, show URL addresses after external links. @@ -256,7 +256,7 @@ texinfo_documents = [ ('index', 'infoblox-client', u'Infoblox Client Documentation', - u'Pavel Bondar', + u'John Belamaric', 'infoblox-client', 'One line description of project.', 'Miscellaneous'), diff --git a/infoblox_client/__init__.py b/infoblox_client/__init__.py index 5f925a8d..d8eaf2ee 100644 --- a/infoblox_client/__init__.py +++ b/infoblox_client/__init__.py @@ -1,3 +1,3 @@ -__author__ = 'Pavel Bondar' -__email__ = 'pbondar@infoblox.com' -__version__ = '0.4.9' +__author__ = 'John Belamaric' +__email__ = 'jbelamaric@infoblox.com' +__version__ = '0.4.10' diff --git a/setup.py b/setup.py index 28345673..00dc2fce 100755 --- a/setup.py +++ b/setup.py @@ -23,11 +23,11 @@ setup( name='infoblox-client', - version='0.4.9', + version='0.4.10', description="Client for interacting with Infoblox NIOS over WAPI", long_description=readme + '\n\n' + history, - author="Pavel Bondar", - author_email='pbondar@infoblox.com', + author="John Belamaric", + author_email='jbelamaric@infoblox.com', url='https://github.com/infobloxopen/infoblox-client', packages=[ 'infoblox_client',