Merge branch 'release/0.2.3'

* release/0.2.3:
  Finalize change log for 0.2.3
  Fix regression in html build
This commit is contained in:
Jan Dittberner 2016-05-05 13:27:54 +02:00
commit 74e9a3a7a6
3 changed files with 9 additions and 4 deletions

View file

@ -1,6 +1,11 @@
Changes Changes
======= =======
0.2.3 - 2016-05-05
------------------
* fix regression in HTML builder that has been introduced in 0.2.2
0.2.2 - 2016-05-05 0.2.2 - 2016-05-05
------------------ ------------------

View file

@ -23,7 +23,7 @@ from sphinx.locale import l_
from sphinx.roles import XRefRole from sphinx.roles import XRefRole
from sphinx.util.nodes import make_refnode from sphinx.util.nodes import make_refnode
__version__ = '0.2.2' __version__ = '0.2.3'
def ip_object_anchor(typ, path): def ip_object_anchor(typ, path):
@ -120,8 +120,8 @@ class IPRange(Directive):
doctitle = self.state.document.traverse(nodes.title)[0].astext() doctitle = self.state.document.traverse(nodes.title)[0].astext()
idx_text = "%s; %s" % (self.rangespec, doctitle) idx_text = "%s; %s" % (self.rangespec, doctitle)
self.indexnode = addnodes.index(entries=[ self.indexnode = addnodes.index(entries=[
('single', idx_text, name, False, ''), ('single', idx_text, name, '', ''),
('single', self.get_index_text(), name, False, '') ('single', self.get_index_text(), name, '', '')
]) ])
if self.content: if self.content:

View file

@ -2,7 +2,7 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
version = '0.2.2' version = '0.2.3'
with open('README.rst') as readme: with open('README.rst') as readme:
description = readme.read() + "\n\n" description = readme.read() + "\n\n"