diff --git a/docs/gitbook/python/changelog.md b/docs/gitbook/python/changelog.md index 737e73c4c1..f095deeaba 100644 --- a/docs/gitbook/python/changelog.md +++ b/docs/gitbook/python/changelog.md @@ -2,6 +2,10 @@ +## v1.13.1 (2023-09-11) +### Fix +* **move-to-finished:** Consider addition of prioritized jobs when processing last active job (#2176) (python) ([`4b01f35`](https://github.com/taskforcesh/bullmq/commit/4b01f359c290cfc62ea74ff3ab0b43ccc6956a02)) + ## v1.13.0 (2023-09-07) ### Feature * **flow-producer:** Add addBulk method (python) ([#2174](https://github.com/taskforcesh/bullmq/issues/2174)) ([`c67dfb4`](https://github.com/taskforcesh/bullmq/commit/c67dfb49931ee4cb96573af660e9f2316942687c)) diff --git a/python/bullmq/__init__.py b/python/bullmq/__init__.py index bcc64fcb6f..9263078844 100644 --- a/python/bullmq/__init__.py +++ b/python/bullmq/__init__.py @@ -3,7 +3,7 @@ A background job processor and message queue for Python based on Redis. """ -__version__ = "1.13.0" +__version__ = "1.13.1" __author__ = 'Taskforce.sh Inc.' __credits__ = 'Taskforce.sh Inc.' diff --git a/python/pyproject.toml b/python/pyproject.toml index 2b53a66991..1956fcfa66 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "bullmq" -version = "1.13.0" +version = "1.13.1" description='BullMQ for Python' readme="README.md" authors = [