diff options
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | grobid_tei_xml/__init__.py | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 35d9f80..fd5d156 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # CHANGELOG +## [0.1.1] - 2021-10-27 + +### Fixed + +- small `setup.py` +- add `py.typed` file to pypi package so that mypy will detect annotations + ## [0.1.0] - 2021-10-25 Initial public release. diff --git a/grobid_tei_xml/__init__.py b/grobid_tei_xml/__init__.py index 8cdbefc..a465635 100644 --- a/grobid_tei_xml/__init__.py +++ b/grobid_tei_xml/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" from .parse import parse_citations_xml, parse_document_xml from .types import GrobidBiblio, GrobidDocument |