From 426f61ed6f8e36918eadbf91ddde33ebce9fdd2b Mon Sep 17 00:00:00 2001 From: Evgeni Pandurski Date: Wed, 25 Oct 2023 15:34:03 +0300 Subject: [PATCH] Bump version --- CHANGES.rst | 10 ++++++++++ docs/conf.py | 6 +++--- setup.py | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 18d8a49..8c58d16 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,16 @@ Changelog ========= +Version 1.0.1 +------------- + +- Fixed tests failing on Dramatiq 1.15 + +- Fixed a problem with `GenericActor` on Python 3.12. + +- Fixed a syntax warning on newer Python versions. + + Version 1.0 ----------- diff --git a/docs/conf.py b/docs/conf.py index 54a7327..0e4e0e8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,9 +62,9 @@ # built documents. # # The short X.Y version. -version = '1.0' +version = '1.0.1' # The full version, including alpha/beta/rc tags. -release = '1.0' +release = '1.0.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -138,7 +138,7 @@ # The name for this set of Sphinx documents. # " v documentation" by default. # -# html_title = 'Flask-Melodramatiq v1.0' +# html_title = 'Flask-Melodramatiq v1.0.1' # A shorter title for the navigation bar. Default is the same as html_title. # diff --git a/setup.py b/setup.py index 3212975..1360401 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def rel(*xs): setup( name='Flask-Melodramatiq', - version='1.0', + version='1.0.1', url='https://github.com/epandurski/flask_melodramatiq', license='MIT', author='Evgeni Pandurski',