Skip to content

Commit

Permalink
Release version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCrews committed May 31, 2022
1 parent cfc418d commit ce4e236
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# CHANGELOG

## Version 0.8.0:

- Expose `DocoptExit` in `__all__`, let users to raise DocoptExit from their code
https://github.com/jazzband/docopt-ng/pull/8
- Fix magic with arguments that have a dash https://github.com/jazzband/docopt-ng/pull/6
- Add `py.typed` so now users can actuall use mypy with us!
https://github.com/jazzband/docopt-ng/commit/de7c861dafb86418da423d4829f389a62c82151a
- Migrate to being maintained by Jazzband!
- Migrate to GitHub actions from TravisCI
- Update and tweak many little things in build, testing, and docs

## Version 0.7.2:

- Complete MyPy typehints - ZERO errors.
Expand Down
2 changes: 1 addition & 1 deletion docopt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from typing import Any, Callable, cast, Type, Tuple, Union

__all__ = ["docopt", "magic_docopt", "magic", "DocoptExit"]
__version__ = "0.7.2"
__version__ = "0.8.0"


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

0 comments on commit ce4e236

Please sign in to comment.