Move change log to a separate file
This commit is contained in:
parent
b5a50256b6
commit
020ac6d0bb
3 changed files with 22 additions and 20 deletions
19
CHANGES.rst
Normal file
19
CHANGES.rst
Normal file
|
@ -0,0 +1,19 @@
|
|||
Changes
|
||||
=======
|
||||
|
||||
0.2.2 - to be released
|
||||
----------------------
|
||||
|
||||
* fix index entries that broke the latex builder
|
||||
|
||||
0.2.1 - 2016-05-05
|
||||
------------------
|
||||
|
||||
* fix handling of invalid IP address/range values
|
||||
* implement a proper clear_doc method for the ip domain
|
||||
|
||||
0.2.0 - 2016-05-04
|
||||
------------------
|
||||
|
||||
* display IP address lists as tables
|
||||
* sort IP address lists numericaly
|
20
README.rst
20
README.rst
|
@ -24,23 +24,3 @@ Contributors
|
|||
* `Jan Dittberner`_
|
||||
|
||||
.. _Jan Dittberner: https://jan.dittberner.info/
|
||||
|
||||
Changes
|
||||
=======
|
||||
|
||||
0.2.2 - to be released
|
||||
----------------------
|
||||
|
||||
* fix index entries that broke the latex builder
|
||||
|
||||
0.2.1 - 2016-05-05
|
||||
------------------
|
||||
|
||||
* fix handling of invalid IP address/range values
|
||||
* implement a proper clear_doc method for the ip domain
|
||||
|
||||
0.2.0 - 2016-05-04
|
||||
------------------
|
||||
|
||||
* display IP address lists as tables
|
||||
* sort IP address lists numericaly
|
||||
|
|
3
setup.py
3
setup.py
|
@ -7,6 +7,9 @@ version = '0.2.2'
|
|||
with open('README.rst') as readme:
|
||||
description = readme.read() + "\n\n"
|
||||
|
||||
with open('CHANGES.rst') as changes:
|
||||
description += changes.read()
|
||||
|
||||
requires = ['Sphinx>=1.4', 'ipcalc>=1.99']
|
||||
tests_requires = ['path.py>=8.2.1']
|
||||
|
||||
|
|
Loading…
Reference in a new issue