From 7321346a7043b51dfa3883e2a224cd78c07703ab Mon Sep 17 00:00:00 2001 From: Michael Penkov Date: Fri, 19 Jul 2024 22:28:30 +0900 Subject: [PATCH 1/2] bumped version to 4.3.3 --- docs/src/conf.py | 4 ++-- gensim/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/conf.py b/docs/src/conf.py index 0fbb479b65..41a63d67ef 100644 --- a/docs/src/conf.py +++ b/docs/src/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = '4.3' +version = '4.3.3' # The full version, including alpha/beta/rc tags. -release = '4.3.2.dev0' +release = '4.3.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/gensim/__init__.py b/gensim/__init__.py index f2a576eed1..442a4bef6b 100644 --- a/gensim/__init__.py +++ b/gensim/__init__.py @@ -4,7 +4,7 @@ """ -__version__ = '4.3.2.dev0' +__version__ = '4.3.3' import logging diff --git a/setup.py b/setup.py index 335426dcf3..01cda61aba 100644 --- a/setup.py +++ b/setup.py @@ -340,7 +340,7 @@ def run(self): setup( name='gensim', - version='4.3.2.dev0', + version='4.3.3', description='Python framework for fast Vector Space Modelling', long_description=LONG_DESCRIPTION, From ea7b162e3c2d93b02f2793cfc6ff5b558ef5dfee Mon Sep 17 00:00:00 2001 From: Michael Penkov Date: Fri, 19 Jul 2024 22:31:49 +0900 Subject: [PATCH 2/2] updated CHANGELOG.md for version 4.3.3 --- CHANGELOG.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91984fded2..62636aef13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ Changes ======= + +## 4.3.3, 2024-07-19 + +### :star2: New Features + +### :red_circle: Bug fixes + +* Correct file argument name in KeyedVectors.save docstring (__[hammad7](https://github.com/hammad7)__, [#3532](https://github.com/piskvorky/gensim/pull/3532)) +* Import deprecated scipy.linalg.triu from numpy.triu instead (__[Luffy610](https://github.com/Luffy610)__, [#3524](https://github.com/piskvorky/gensim/pull/3524)) + +### :books: Tutorial and doc improvements + +* Updated the broken Documentation Link on the README.md (__[wittyicon29](https://github.com/wittyicon29)__, [#3505](https://github.com/piskvorky/gensim/pull/3505)) + +### :+1: Improvements + +* Add support for python3.12 wheels (__[YoungMind1](https://github.com/YoungMind1)__, [#3531](https://github.com/piskvorky/gensim/pull/3531)) +* Removed scipy from build-only dependencies (__[filip-komarzyniec](https://github.com/filip-komarzyniec)__, [#3538](https://github.com/piskvorky/gensim/pull/3538)) +* Use newer unittest.mock everwhere (__[a-detiste](https://github.com/a-detiste)__, [#3529](https://github.com/piskvorky/gensim/pull/3529)) +* Handle optional parameters without implicit bool cast (__[nk-fouque](https://github.com/nk-fouque)__, [#3502](https://github.com/piskvorky/gensim/pull/3502)) + ## 4.3.2, 2023-08-23 ### :red_circle: Bug fixes