summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Moss <david.moss@gmail.com>2015-09-03 22:52:20 +0100
committerDavid Moss <david.moss@gmail.com>2015-09-03 22:52:20 +0100
commitc3fbf2dc5535b602c9b90799fb15727392859b0f (patch)
tree5155073128dc758809bfd95b38c570b414ef9294
parent2a44dc621f8f8499fe0126745039bf174fc96461 (diff)
downloadnetaddr-c3fbf2dc5535b602c9b90799fb15727392859b0f.tar.gz
- updated versions for release 0.7.18
-rw-r--r--CHANGELOG2
-rw-r--r--README.md2
-rw-r--r--docs/source/changes.rst2
-rw-r--r--docs/source/conf.py4
-rw-r--r--docs/source/index.rst2
-rw-r--r--netaddr/__init__.py2
6 files changed, 7 insertions, 7 deletions
diff --git a/CHANGELOG b/CHANGELOG
index f204cdf..78a8406 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,7 +1,7 @@
---------------
Release: 0.7.18
---------------
-Date: ?? Sep 2015
+Date: 4 Sep 2015
^^^^^^^^^^^^^^^^^^^^
Changes since 0.7.17
diff --git a/README.md b/README.md
index 8f3ad66..a39c31b 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
netaddr
=======
-A Python library for representing and manipulating network addresses.
+A network address manipulation library for Python
[![Circle CI](https://circleci.com/gh/drkjam/netaddr.png?style=shield)](https://circleci.com/gh/drkjam/netaddr)
[![Latest Version](https://img.shields.io/pypi/v/netaddr.svg)](pypi.python.org/pypi/netaddr)
diff --git a/docs/source/changes.rst b/docs/source/changes.rst
index 8c1d5bd..d26644a 100644
--- a/docs/source/changes.rst
+++ b/docs/source/changes.rst
@@ -1,5 +1,5 @@
============================
-What's new in netaddr 0.7.17
+What's new in netaddr 0.7.18
============================
.. include:: ../../CHANGELOG
diff --git a/docs/source/conf.py b/docs/source/conf.py
index d4fc49b..1c6d72f 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -50,7 +50,7 @@ copyright = u'2008-2015, David P. D. Moss. All rights reserved'
# The short X.Y version.
version = '0.7.16'
# The full version, including alpha/beta/rc tags.
-release = '0.7.17'
+release = '0.7.18'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -232,7 +232,7 @@ texinfo_documents = [
u'netaddr Documentation',
u'David P. D. Moss',
'netaddr',
- 'a comprehensive network address library for Python',
+ 'A network address manipulation library for Python',
'Miscellaneous'),
]
diff --git a/docs/source/index.rst b/docs/source/index.rst
index aae8b8a..f05fcd2 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -1,5 +1,5 @@
============================
-netaddr 0.7.17 documentation
+netaddr 0.7.18 documentation
============================
.. image:: https://circleci.com/gh/drkjam/netaddr.png?style=shield
diff --git a/netaddr/__init__.py b/netaddr/__init__.py
index 0578e0d..b2615d8 100644
--- a/netaddr/__init__.py
+++ b/netaddr/__init__.py
@@ -6,7 +6,7 @@
"""A Python library for manipulating IP and EUI network addresses."""
#: Version info (major, minor, maintenance, status)
-VERSION = (0, 7, 17)
+VERSION = (0, 7, 18)
STATUS = ''
__version__ = '%d.%d.%d' % VERSION[0:3] + STATUS