From 4562a163d7d66fc4ca002e9d6348c6a4ea77ab8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Wed, 28 Jul 2021 12:12:41 +0200 Subject: [PATCH] Release 0.7.6 --- CHANGES.rst | 13 +++++++++++++ LICENSE | 2 +- docs/conf.py | 2 +- setup.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index f416b3c..35d2a9c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,19 @@ CHANGES ======= +0.7.6 (2021-07-28) +------------------ + +* Wheels are now published for all platforms. +* Fixed ``ResourceWarning: unclosed file`` in ``setup.py``. +* Run ``black`` on the entire source code. +* Moved the QA/CI to GitHub. +* Rebuild Cython wrapper with Cython 0.29.24. +* Updated ``libmarisa-trie`` to the latest version (0.2.6). +* Fixed failing tests and usage of deprecated methods. +* Expanded supported Python version (2.6 - 3.10). + + 0.7.5 (2018-04-10) ------------------ diff --git a/LICENSE b/LICENSE index 73c9104..876f057 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) marisa-trie authors and contributors, 2012-2016 +Copyright (c) marisa-trie authors and contributors, 2012-2021 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/conf.py b/docs/conf.py index fb54eb8..1cc70c1 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ # built documents. # # The short X.Y version. -version = "0.7.5" +version = "0.7.6" # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index ee7683d..e3de48a 100755 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ setup( name="marisa-trie", - version="0.7.5", + version="0.7.6", description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type="text/x-rst",