diff --git a/CHANGES.rst b/CHANGES.rst index f171724..9633e3c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,12 @@ CHANGES ======= +0.7.8 (2022-10-25) +------------------ + +* Added Python 3.11 support. +* Rebuild Cython wrapper with Cython 0.29.32. + 0.7.7 (2021-08-04) ------------------ diff --git a/docs/conf.py b/docs/conf.py index f25b1a4..49cc0c7 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ # built documents. # # The short X.Y version. -version = "0.7.7" +version = "0.7.8" # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index 076c6ea..31b6b0e 100755 --- a/setup.py +++ b/setup.py @@ -57,6 +57,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Scientific/Engineering :: Information Analysis", @@ -65,7 +66,7 @@ setup( name="marisa-trie", - version="0.7.7", + version="0.7.8", description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type="text/x-rst",