Skip to content

Commit

Permalink
Update version history. Magically stop repeating it in the readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikrose committed Jun 26, 2012
1 parent 59433c6 commit 0fbcdd6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 14 deletions.
13 changes: 0 additions & 13 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,3 @@ Full Documentation

Please see http://packages.python.org/more-itertools/api.html for the list of
routines.


Version History
===============

1.1
* Added ``first`` function.
* Added Python 3 support.
* Rewrote documentation.

1.0
* Initial release, with ``collate``, ``peekable``, and ``chunked``. Could
really use better docs.
2 changes: 2 additions & 0 deletions docs/versions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Version History
1.1
* Added ``first`` function.
* Added Python 3 support.
* Added a default arg to ``peekable.peek()``.
* Noted how to easily test whether a peekable iterator is exhausted.
* Rewrote documentation.

1.0
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
name='more-itertools',
version='1.1',
description='More routines for operating on iterables, beyond itertools',
long_description=open('README.rst').read(),
long_description=(open('README.rst').read() + '\n\n' +
'\n'.join(open('docs/versions.rst').read()
.splitlines()[1:])),
author='Erik Rose',
author_email='erikrose@grinchcentral.com',
license='MIT',
Expand Down

0 comments on commit 0fbcdd6

Please sign in to comment.