diff --git a/CHANGES.rst b/CHANGES.rst index 9633e3c..c653fdf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,12 @@ CHANGES ======= +0.8.0 (2023-03-25) +------------------ + +* Add ``Trie.iter_prefixes_with_ids()`` method to return ``(prefix, id)`` pairs (#83). +* Rebuild Cython wrapper with Cython 0.29.33 (#88). + 0.7.8 (2022-10-25) ------------------ diff --git a/docs/conf.py b/docs/conf.py index 2dbde50..56b47f6 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ # built documents. # # The short X.Y version. -version = "0.7.8" +version = "0.8.0" # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index 31b6b0e..5a4e39b 100755 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ setup( name="marisa-trie", - version="0.7.8", + version="0.8.0", description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type="text/x-rst",