Skip to content

Commit b0dda81

Browse files
committed
add a rudimentary change log to the repository
1 parent 0a48b2f commit b0dda81

File tree

3 files changed

+54
-2
lines changed

3 files changed

+54
-2
lines changed

CHANGES.rst

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
Change Log
2+
----------
3+
4+
1.0
5+
~~~
6+
7+
Released on XXX, 2013
8+
9+
10+
0.95
11+
~~~~
12+
13+
Released on February 11, 2012
14+
15+
16+
0.90
17+
~~~~
18+
19+
Released on January 17, 2010
20+
21+
22+
0.11.1
23+
~~~~~~
24+
25+
Released on June 12, 2008
26+
27+
28+
0.11
29+
~~~~
30+
31+
Released on June 10, 2008
32+
33+
34+
0.10
35+
~~~~
36+
37+
Released on October 7, 2007
38+
39+
40+
0.9
41+
~~~
42+
43+
Released on March 11, 2007
44+
45+
46+
0.2
47+
~~~
48+
49+
Released on January 8, 2007

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
include LICENSE
2+
include CHANGES.rst
23
include README.rst
34
include requirements*.txt
45
graft html5lib/tests/testdata

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@
2323
if os.path.isdir(os.path.join('html5lib', name)) and
2424
not name.startswith('.') and name != 'tests']
2525

26-
with codecs.open(os.path.join(os.path.dirname(__file__), 'README.rst'), 'r', 'utf8') as ld_file:
27-
long_description = ld_file.read()
26+
current_dir = os.path.dirname(__file__)
27+
with codecs.open(os.path.join(current_dir, 'README.rst'), 'r', 'utf8') as readme_file:
28+
with codecs.open(os.path.join(current_dir, 'CHANGES.rst'), 'r', 'utf8') as changes_file:
29+
long_description = readme_file.read() + '\n' + changes_file.read()
2830

2931
setup(name='html5lib',
3032
version='1.0b1',

0 commit comments

Comments
 (0)