From 8295c3058a40e9d553c6aeff4e68fcaaba62586a Mon Sep 17 00:00:00 2001 From: Nycholas de Oliveira e Oliveira Date: Tue, 30 Nov 2021 10:58:09 -0300 Subject: [PATCH] Version 2.1.0 * Restructures the project (#91) * Add dependabot.yml * Add support to async and await * Add badge docs * Add FUNDING.yml * Unindent & highlight code sections (#150) --- docs/conf.py | 4 ++-- src/flask_jsonrpc/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index f9765953..b2c4d1e1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -5,8 +5,8 @@ project = 'Flask-JSONRPC' copyright = '2021, Nycholas de Oliveira e Oliveira' # pylint: disable=W0622 author = 'Nycholas de Oliveira e Oliveira' -release = '2.1.0.beta' -version = '2.1.0.beta' +release = '2.1.0' +version = '2.1.0' # -- General configuration --------------------------------------------------- diff --git a/src/flask_jsonrpc/__init__.py b/src/flask_jsonrpc/__init__.py index ec536df5..b2c2f64e 100644 --- a/src/flask_jsonrpc/__init__.py +++ b/src/flask_jsonrpc/__init__.py @@ -28,4 +28,4 @@ from .views import JSONRPCView from .blueprints import JSONRPCBlueprint -__version__ = '2.1.0.beta' +__version__ = '2.1.0'