Skip to content

Commit cf801da

Browse files
committed
prepare for v0.0.2 release
1 parent 7605531 commit cf801da

File tree

4 files changed

+28
-2
lines changed

4 files changed

+28
-2
lines changed

CHANGELOG.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
CHANGE Log
2+
================================================================================
3+
4+
0.0.2 - 27-Apr-2016
5+
--------------------------------------------------------------------------------
6+
7+
Updated
8+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9+
10+
#. Bug fix `issue 1 <https://github.com/chfw/moban/issues/1>`_, failed to save utf-8 characters
11+
12+
13+
0.0.1 - 23-Mar-2016
14+
--------------------------------------------------------------------------------
15+
16+
Initial release

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.rst
2+
include CHANGELOG.rst

docs/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ Tutorial
1919
level-5-custom-configuration/README.rst
2020
level-6-complex-configuration/README.rst
2121

22+
.. include:: ../CHANGELOG.rst
23+
2224
Indices and tables
2325
==================
2426

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
NAME = 'moban'
55
AUTHOR = 'C.W.'
6-
VERSION = '0.0.1'
6+
VERSION = '0.0.2'
77
EMAIL = "wangc_2011 (at) hotmail.com"
88
LICENSE = 'MIT'
99
ENTRY_POINTS = {
@@ -21,6 +21,12 @@
2121
]
2222

2323

24+
def read_files(*files):
25+
text = ""
26+
for single_file in files:
27+
text = text + read(single_file)
28+
return text
29+
2430
def read(afile):
2531
with open(afile, 'r') as opened_file:
2632
return opened_file.read()
@@ -36,7 +42,7 @@ def read(afile):
3642
install_requires=INSTALL_REQUIRES,
3743
packages=PACKAGES,
3844
include_package_data=True,
39-
long_description=read('README.rst'),
45+
long_description=read_files('README.rst', 'CHANGELOG.rst'),
4046
zip_safe=False,
4147
tests_require=['nose'],
4248
license=LICENSE,

0 commit comments

Comments
 (0)