From 6120947b37051ad0387c6b99d098ed18c50aa566 Mon Sep 17 00:00:00 2001 From: Alex Ioannidis Date: Mon, 26 Aug 2024 14:29:41 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20release:=20v1.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/tests.yml | 2 +- CHANGES.rst | 4 ++++ MANIFEST.in | 2 +- flask_iiif/__init__.py | 2 +- run-tests.sh | 2 +- tests/test_context_template.py | 2 +- tests/test_image_redis_cache.py | 2 +- tests/test_restful_api.py | 2 +- tests/test_restful_api_with_redis.py | 2 +- 9 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2307fab..ccc7ce9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Invenio. -# Copyright (C) 2020 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2022 Graz University of Technology. # # Invenio is free software; you can redistribute it and/or modify it diff --git a/CHANGES.rst b/CHANGES.rst index 26ba11d..bc94711 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Changes ======= +Version v1.1.0 (released 2024-08-26) + +- resize: added upscaling params for h & w + Here you can see the full list of changes between each Flask-IIIF release. diff --git a/MANIFEST.in b/MANIFEST.in index ab35cc6..b97a8c7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Flask-IIIF -# Copyright (C) 2014-2020 CERN. +# Copyright (C) 2014-2024 CERN. # # 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 diff --git a/flask_iiif/__init__.py b/flask_iiif/__init__.py index ab0fb1f..16e10c9 100644 --- a/flask_iiif/__init__.py +++ b/flask_iiif/__init__.py @@ -166,7 +166,7 @@ def protect_api(): self.api_decorator_callback = callback -__version__ = "1.0.0" +__version__ = "1.1.0" __all__ = ( "IIIF", diff --git a/run-tests.sh b/run-tests.sh index 831487d..3224d90 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # # This file is part of Invenio. -# Copyright (C) 2014-2020 CERN. +# Copyright (C) 2014-2024 CERN. # Copyright (C) 2022 Graz University of Technology. # # Invenio is free software; you can redistribute it and/or modify it diff --git a/tests/test_context_template.py b/tests/test_context_template.py index 8e36768..e6ce45a 100644 --- a/tests/test_context_template.py +++ b/tests/test_context_template.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Flask-IIIF -# Copyright (C) 2015 CERN. +# Copyright (C) 2015-2024 CERN. # # 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 diff --git a/tests/test_image_redis_cache.py b/tests/test_image_redis_cache.py index e310b28..4a9495d 100644 --- a/tests/test_image_redis_cache.py +++ b/tests/test_image_redis_cache.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Flask-IIIF -# Copyright (C) 2017 CERN. +# Copyright (C) 2017-2024 CERN. # # 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 diff --git a/tests/test_restful_api.py b/tests/test_restful_api.py index f9233ec..5412259 100644 --- a/tests/test_restful_api.py +++ b/tests/test_restful_api.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Flask-IIIF -# Copyright (C) 2015 CERN. +# Copyright (C) 2015-2024 CERN. # # 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 diff --git a/tests/test_restful_api_with_redis.py b/tests/test_restful_api_with_redis.py index 976b0d7..ecdd410 100644 --- a/tests/test_restful_api_with_redis.py +++ b/tests/test_restful_api_with_redis.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Flask-IIIF -# Copyright (C) 2015 CERN. +# Copyright (C) 2015-2024 CERN. # # 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