From e39117de0ec86f852889c2767405f7528f73ffc7 Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Thu, 21 Nov 2024 12:00:16 +0100 Subject: [PATCH 1/3] setup: remove werkzeug pin --- setup.cfg | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 773e334..6b3b358 100644 --- a/setup.cfg +++ b/setup.cfg @@ -33,8 +33,6 @@ install_requires = Flask-RESTful>=0.3.7 pillow>=7.0 six>=1.7.2 - # remove after flask pin in pytest has been removed - werkzeug<3.1.0 [options.extras_require] tests = From f2e7e388c89942c977ceb9056a43a1ddb7d48b29 Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Thu, 12 Dec 2024 22:06:34 +0100 Subject: [PATCH 2/3] fix: docs reference target not found --- docs/conf.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 65ed403..46555a2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ # # This file is part of Flask-IIIF # Copyright (C) 2014-2020 CERN. -# Copyright (C) 2022 Graz University of Technology. +# Copyright (C) 2022-2024 Graz University of Technology. # # Flask-IIIF is free software; you can redistribute it and/or modify # it under the terms of the Revised BSD License; see LICENSE file for @@ -316,4 +316,9 @@ # Autodoc configuraton. autoclass_content = "both" -nitpick_ignore = [("py:class", "type")] +nitpick_ignore = [ + ("py:class", "type"), + ("py:class", "t.ClassVar"), + ("py:class", "t.Optional"), + ("py:class", "t.Collection"), +] From 9b601f392a5d83b36ff62ff8241c37a9d098efda Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Thu, 12 Dec 2024 22:06:55 +0100 Subject: [PATCH 3/3] release: v1.2.0 --- CHANGES.rst | 5 +++++ flask_iiif/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 835ec2e..1b980d0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ======= +Version 1.2.0 (released 2024-12-12) + +- fix: docs reference target not found +- setup: remove werkzeug pin + Version v1.1.1 (released 2024-11-05) - setup: remove werkzeug pin diff --git a/flask_iiif/__init__.py b/flask_iiif/__init__.py index 72bcc8f..ce635a2 100644 --- a/flask_iiif/__init__.py +++ b/flask_iiif/__init__.py @@ -168,7 +168,7 @@ def protect_api(): self.api_decorator_callback = callback -__version__ = "1.1.1" +__version__ = "1.2.0" __all__ = ( "IIIF",