From 9a4d1a2a35f686f6e92f165f7a0e9717d771ff40 Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Sat, 18 May 2024 23:05:06 +0200 Subject: [PATCH] PyOtherSide 1.6.1 --- LICENSE | 2 +- docs/conf.py | 4 ++-- docs/index.rst | 4 ++-- pyotherside.pri | 2 +- src/converter.h | 2 +- src/pyobject_converter.h | 2 +- src/pyotherside_plugin.cpp | 2 +- src/pyotherside_plugin.h | 2 +- src/qml_python_bridge.h | 2 +- src/qpython.cpp | 2 +- src/qpython.h | 2 +- src/qpython_imageprovider.cpp | 2 +- src/qpython_imageprovider.h | 2 +- src/qpython_priv.cpp | 2 +- src/qpython_priv.h | 2 +- src/qpython_worker.cpp | 2 +- src/qpython_worker.h | 2 +- src/qvariant_converter.h | 2 +- tests/tests.cpp | 2 +- tests/tests.h | 2 +- 20 files changed, 22 insertions(+), 22 deletions(-) diff --git a/LICENSE b/LICENSE index 78de1e9..affb92f 100644 --- a/LICENSE +++ b/LICENSE @@ -2,7 +2,7 @@ PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 ISC License -Copyright (c) 2011, 2013-2022, Thomas Perl +Copyright (c) 2011, 2013-2024, Thomas Perl Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/docs/conf.py b/docs/conf.py index ef47894..2ceca14 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,7 +41,7 @@ master_doc = 'index' # General information about the project. project = u'PyOtherSide' -copyright = u'2014-2022 Thomas Perl' +copyright = u'2014-2024 Thomas Perl' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -50,7 +50,7 @@ copyright = u'2014-2022 Thomas Perl' # The short X.Y version. version = '1.6' # The full version, including alpha/beta/rc tags. -release = '1.6.0' +release = '1.6.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index 06f0d43..45fba80 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1196,8 +1196,8 @@ flags for compiling and linking against Python on your system. ChangeLog ========= -Version UNRELEASED (YYYY-MM-DD) -------------------------------- +Version 1.6.1 (2024-05-18) +-------------------------- * Dropped support for Python < 3.8 (PR#131) * Added support for Python 3.12 (PR#131) diff --git a/pyotherside.pri b/pyotherside.pri index 6060380..219762b 100644 --- a/pyotherside.pri +++ b/pyotherside.pri @@ -1,2 +1,2 @@ PROJECTNAME = pyotherside -VERSION = 1.6.0 +VERSION = 1.6.1 diff --git a/src/converter.h b/src/converter.h index 3b5a152..9761871 100644 --- a/src/converter.h +++ b/src/converter.h @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/pyobject_converter.h b/src/pyobject_converter.h index f76f9f3..bf6e2e3 100644 --- a/src/pyobject_converter.h +++ b/src/pyobject_converter.h @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/pyotherside_plugin.cpp b/src/pyotherside_plugin.cpp index 98070bc..962949f 100644 --- a/src/pyotherside_plugin.cpp +++ b/src/pyotherside_plugin.cpp @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/pyotherside_plugin.h b/src/pyotherside_plugin.h index daaeb59..c3f0d5b 100644 --- a/src/pyotherside_plugin.h +++ b/src/pyotherside_plugin.h @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/qml_python_bridge.h b/src/qml_python_bridge.h index 3699800..1ba03fb 100644 --- a/src/qml_python_bridge.h +++ b/src/qml_python_bridge.h @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/qpython.cpp b/src/qpython.cpp index 3445891..09a92f7 100644 --- a/src/qpython.cpp +++ b/src/qpython.cpp @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/qpython.h b/src/qpython.h index 7cc78c0..d61a593 100644 --- a/src/qpython.h +++ b/src/qpython.h @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/qpython_imageprovider.cpp b/src/qpython_imageprovider.cpp index b0709da..5e54983 100644 --- a/src/qpython_imageprovider.cpp +++ b/src/qpython_imageprovider.cpp @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/qpython_imageprovider.h b/src/qpython_imageprovider.h index c7733ed..5179b35 100644 --- a/src/qpython_imageprovider.h +++ b/src/qpython_imageprovider.h @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/qpython_priv.cpp b/src/qpython_priv.cpp index 687f9e4..811301e 100644 --- a/src/qpython_priv.cpp +++ b/src/qpython_priv.cpp @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/qpython_priv.h b/src/qpython_priv.h index 7d6d456..1627787 100644 --- a/src/qpython_priv.h +++ b/src/qpython_priv.h @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/qpython_worker.cpp b/src/qpython_worker.cpp index 5a8176e..4259029 100644 --- a/src/qpython_worker.cpp +++ b/src/qpython_worker.cpp @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/qpython_worker.h b/src/qpython_worker.h index b0f8c0a..e14e618 100644 --- a/src/qpython_worker.h +++ b/src/qpython_worker.h @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/qvariant_converter.h b/src/qvariant_converter.h index e0b0ebc..ad51090 100644 --- a/src/qvariant_converter.h +++ b/src/qvariant_converter.h @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/tests/tests.cpp b/tests/tests.cpp index f102a20..45e34fd 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/tests/tests.h b/tests/tests.h index cd11d60..53b2a68 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -1,7 +1,7 @@ /** * PyOtherSide: Asynchronous Python 3 Bindings for Qt 5 and Qt 6 - * Copyright (c) 2011, 2013-2022, Thomas Perl + * Copyright (c) 2011, 2013-2024, Thomas Perl * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above