From 0d673d7804115bf19b11e776f473484e9a2e3d78 Mon Sep 17 00:00:00 2001 From: Adrien Barbaresi Date: Tue, 18 Jun 2024 13:31:01 +0200 Subject: [PATCH] prepare version 0.3.0 (#12) --- HISTORY.rst | 7 +++++++ README.rst | 3 ++- py3langid/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index e32c087..b646431 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,13 @@ History ======= +0.3.0 +----- + +* Modernized setup, dropped support for Python 3.6 & 3.7 +* Simplified inference code +* Support for Numpy 2.0 + 0.2.2 ----- diff --git a/README.rst b/README.rst index 49f3081..1bb793f 100644 --- a/README.rst +++ b/README.rst @@ -20,6 +20,8 @@ Execution speed has been improved and the code base has been optimized for Pytho For implementation details see this blog post: `How to make language detection with langid.py faster `_. +For more information and older Python versions see `changelog `_. + Usage ----- @@ -97,7 +99,6 @@ On the command-line ('it', 0.97038305) - Legacy documentation -------------------- diff --git a/py3langid/__init__.py b/py3langid/__init__.py index 98dc4c6..8b1baeb 100644 --- a/py3langid/__init__.py +++ b/py3langid/__init__.py @@ -1,3 +1,3 @@ from .langid import classify, rank, set_languages -__version__ = '0.2.2' +__version__ = '0.3.0'