Skip to content

Commit 1514d35

Browse files
committed
bumps
1 parent d546cc1 commit 1514d35

File tree

2 files changed

+6
-17
lines changed

2 files changed

+6
-17
lines changed

README.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,7 @@
5555
> `[default: ./here ./there]` will be interpreted as
5656
> `['./here', './there']`.
5757
58-
#### Breaking changes:
59-
60-
> - Meaning of `[options]` shortcut slightly changed. Previously it
61-
> meant *"any known option"*. Now it means *"any option not in
62-
> usage-pattern"*. This avoids the situation when an option is
63-
> allowed to be repeated unintentionally.
64-
> - `argv` is `None` by default, not `sys.argv[1:]`. This allows
65-
> `docopt` to always use the *latest* `sys.argv`, not `sys.argv`
66-
> during import time.
67-
68-
**docopt-ng** helps you create most beautiful command-line interfaces
69-
*easily*:
58+
**docopt-ng** helps you create beautiful command-line interfaces *magically*:
7059

7160
``` {.sourceCode .python}
7261
"""Naval Fate.
@@ -110,7 +99,7 @@ putting help message in the module docstrings.
11099

111100
Use [pip](http://pip-installer.org) or easy\_install:
112101

113-
pip install docopt-ng==0.6.3
102+
pip install docopt-ng
114103

115104
Alternatively, you can just drop `docopt.py` file into your project--it
116105
is self-contained.

docopt.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
1010
* Copyright (c) 2012 Andrew Kassen <atkassen@ucdavis.edu>
1111
* Copyright (c) 2012 jeffrimko <jeffrimko@gmail.com>
12-
* COpyright (c) 2012 Andrew Sutton <met48@met48.com>
13-
* COpyright (c) 2012 Andrew Sutton <met48@met48.com>
12+
* Copyright (c) 2012 Andrew Sutton <met48@met48.com>
13+
* Copyright (c) 2012 Andrew Sutton <met48@met48.com>
1414
* Copyright (c) 2012 Nima Johari <nimajohari@gmail.com>
1515
* Copyright (c) 2012-2013 Vladimir Keleshev, vladimir@keleshev.com
1616
* Copyright (c) 2014-2018 Matt Boersma <matt@sprout.org>
@@ -28,8 +28,8 @@
2828

2929
from typing import Any, List, Tuple, Union, Optional
3030

31-
__all__ = ["docopt"]
32-
__version__ = "0.7.0"
31+
__all__ = ["docopt", "magic_docopt", "magic"]
32+
__version__ = "0.7.1"
3333

3434

3535
def levenshtein_norm(source: str, target: str) -> float:

0 commit comments

Comments
 (0)