Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.6.x #418

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

0.6.x #418

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Installation

Use `pip <http://pip-installer.org>`_ or easy_install::

pip install docopt==0.6.1
pip install docopt==0.6.2

Alternatively, you can just drop ``docopt.py`` file into your
project--it is self-contained.
Expand Down Expand Up @@ -402,7 +402,7 @@ Porting ``docopt`` to other languages
We think **docopt** is so good, we want to share it beyond the Python
community!

The follosing ports are available:
The following ports are available:

- `Ruby port <http://github.com/docopt/docopt.rb>`_
- `CoffeeScript port <http://github.com/docopt/docopt.coffee>`_
Expand All @@ -425,8 +425,9 @@ first release with stable API will be 1.0.0 (soon). Until then, you
are encouraged to specify explicitly the version in your dependency
tools, e.g.::

pip install docopt==0.6.1
pip install docopt==0.6.2

- 0.6.2 `Wheel <http://pythonwheels.com/>`_ support.
- 0.6.1 Bugfix release.
- 0.6.0 ``options_first`` parameter.
**Breaking changes**: Corrected ``[options]`` meaning.
Expand Down
2 changes: 1 addition & 1 deletion docopt.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


__all__ = ['docopt']
__version__ = '0.6.1'
__version__ = '0.6.2'


class DocoptLanguageError(Exception):
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[wheel]
universal = 1