aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-10-27 16:42:08 -0700
committerBryan Newbold <bnewbold@archive.org>2021-10-27 16:42:08 -0700
commitce4ffb7fe67455564fad6f777e37fda8c813ae3b (patch)
tree28453a037d3ddc825d983ef3cc75b5c3f2c04fd2
parentcd2541b1d39068e34a6507f9e01663d10f61e60a (diff)
downloadgrobid_tei_xml-ce4ffb7fe67455564fad6f777e37fda8c813ae3b.tar.gz
grobid_tei_xml-ce4ffb7fe67455564fad6f777e37fda8c813ae3b.zip
bump version to 0.1.0v0.1.1
-rw-r--r--CHANGELOG.md7
-rw-r--r--grobid_tei_xml/__init__.py2
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