Skip to content

Commit

Permalink
add a rudimentary change log to the repository
Browse files Browse the repository at this point in the history
  • Loading branch information
ambv committed May 6, 2013
1 parent 0a48b2f commit b0dda81
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 2 deletions.
49 changes: 49 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
Change Log
----------

1.0
~~~

Released on XXX, 2013


0.95
~~~~

Released on February 11, 2012


0.90
~~~~

Released on January 17, 2010


0.11.1
~~~~~~

Released on June 12, 2008


0.11
~~~~

Released on June 10, 2008


0.10
~~~~

Released on October 7, 2007


0.9
~~~

Released on March 11, 2007


0.2
~~~

Released on January 8, 2007
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include LICENSE
include CHANGES.rst
include README.rst
include requirements*.txt
graft html5lib/tests/testdata
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@
if os.path.isdir(os.path.join('html5lib', name)) and
not name.startswith('.') and name != 'tests']

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

setup(name='html5lib',
version='1.0b1',
Expand Down

0 comments on commit b0dda81

Please sign in to comment.