Skip to content

Commit 08c2867

Browse files
author
Stefan Behnel
committed
add changelog
1 parent d752764 commit 08c2867

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

Diff for: CHANGES.rst

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ChangeLog
2+
=========
3+
4+
Latest changes
5+
--------------
6+
7+
8+
0.1 (2014-09-24)
9+
----------------
10+
11+
* initial public release

Diff for: MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include MANIFEST.in LICENSE README.rst
1+
include MANIFEST.in LICENSE *.rst
22
include setup.py
33
recursive-include src *.py *.pyx *.c *.html
44
recursive-include benchmark *.py telco-bench.b

Diff for: README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
==========
12
quicktions
23
==========
34

Diff for: setup.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@
3030
version = re.search("__version__\s*=\s*'([^']+)'", f.read(2048)).group(1)
3131

3232
with open('README.rst') as f:
33-
long_description = ''.join(filter(None, f.readlines()[2:]))
33+
long_description = ''.join(f.readlines()[2:])
34+
35+
with open('CHANGES.rst') as f:
36+
long_description += '\n\n' + f.read()
37+
3438

3539
setup(
3640
name="quicktions",

0 commit comments

Comments
 (0)