From d51d115f112f42b3f0848ce7f315726fea995336 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Tue, 5 Mar 2024 13:41:37 +0100 Subject: [PATCH] v7.1.0 --- CHANGELOG.rst | 7 ++++++- LICENSE | 2 +- docs/conf.py | 2 +- flask_dance/__init__.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8437860..1b9f523 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,10 @@ Changelog `unreleased`_ ------------- +nothing yet + +`7.1.0`_ (2024-03-05) +--------------------- * Set ``auto_refresh_url`` automatically in ``make_azure_blueprint`` when the ``offline_access`` scope is included, thereby enabling automatic token refresh * Allow returning a custom response from a ``oauth_error`` signal handler. @@ -409,7 +413,8 @@ Fixed .. _flit: https://flit.pypa.io/ .. _PKCE: https://www.rfc-editor.org/rfc/rfc7636 -.. _unreleased: https://github.com/singingwolfboy/flask-dance/compare/v7.0.0...HEAD +.. _unreleased: https://github.com/singingwolfboy/flask-dance/compare/v7.1.0...HEAD +.. _7.0.1: https://github.com/singingwolfboy/flask-dance/compare/v7.0.1...v7.1.0 .. _7.0.1: https://github.com/singingwolfboy/flask-dance/compare/v7.0.0...v7.0.1 .. _7.0.0: https://github.com/singingwolfboy/flask-dance/compare/v6.2.0...v7.0.0 .. _6.2.0: https://github.com/singingwolfboy/flask-dance/compare/v6.1.1...v6.2.0 diff --git a/LICENSE b/LICENSE index 6c0079b..8ca792e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ The MIT License (MIT) -Copyright © 2014-2021 David Baumgold +Copyright © 2014-2024 David Baumgold Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal diff --git a/docs/conf.py b/docs/conf.py index a414390..dfe3785 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,7 +51,7 @@ # General information about the project. project = "Flask Dance" -copyright = "2014-2021, David Baumgold" +copyright = "2014-2024, David Baumgold" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/flask_dance/__init__.py b/flask_dance/__init__.py index 3f24b83..e4be898 100644 --- a/flask_dance/__init__.py +++ b/flask_dance/__init__.py @@ -1,4 +1,4 @@ "Doing the OAuth dance with style using Flask, requests, and oauthlib" from .consumer import OAuth1ConsumerBlueprint, OAuth2ConsumerBlueprint -__version__ = "7.0.1" +__version__ = "7.1.0"