From a16e59e8f7675ff0923bc1b491573e72c554118d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Sat, 25 Mar 2023 23:08:43 +0100 Subject: [PATCH] Version 0.8.0 --- CHANGES.rst | 6 ++++++ docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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",