From bfea14b88cd9a25973dd8e3af066c76863ed3718 Mon Sep 17 00:00:00 2001 From: Peter Doggart Date: Sun, 10 Dec 2023 14:48:18 +0000 Subject: [PATCH] Update to version 1.3.1.dev for next development cycle --- README.rst | 8 ++++---- flask_restx/__about__.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 8c7d3d49..99a28c64 100644 --- a/README.rst +++ b/README.rst @@ -2,14 +2,14 @@ Flask RESTX =========== -.. image:: https://github.com/python-restx/flask-restx/workflows/Tests/badge.svg?tag=1.3.0&event=push +.. image:: https://github.com/python-restx/flask-restx/workflows/Tests/badge.svg?branch=master&event=push :target: https://github.com/python-restx/flask-restx/actions?query=workflow%3ATests :alt: Tests status .. image:: https://codecov.io/gh/python-restx/flask-restx/branch/master/graph/badge.svg :target: https://codecov.io/gh/python-restx/flask-restx :alt: Code coverage -.. image:: https://readthedocs.org/projects/flask-restx/badge/?version=1.3.0 - :target: https://flask-restx.readthedocs.io/en/1.3.0/ +.. image:: https://readthedocs.org/projects/flask-restx/badge/?version=latest + :target: https://flask-restx.readthedocs.io/en/latest/ :alt: Documentation status .. image:: https://img.shields.io/pypi/l/flask-restx.svg :target: https://pypi.org/project/flask-restx @@ -65,7 +65,7 @@ Flask and Werkzeug moved to versions 2.0 in March 2020. This caused a breaking c * - == 1.2.0 - < 3.0.0 - pinned in Flask-RESTX. - * - >= 1.3.0 + * - >= 1.3.1.dev - >= 2.0.0 (Flask >= 3.0.0 support) - unpinned, import statements wrapped for compatibility * - trunk branch in Github diff --git a/flask_restx/__about__.py b/flask_restx/__about__.py index 1b0e8468..797f76c6 100644 --- a/flask_restx/__about__.py +++ b/flask_restx/__about__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = "1.3.0" +__version__ = "1.3.1.dev" __description__ = ( "Fully featured framework for fast, easy and documented API development with Flask" )