From 2bebf01fc96b65b2975fb49b8589c6cdb3ddbf6e Mon Sep 17 00:00:00 2001 From: totaam Date: Wed, 16 Nov 2022 17:55:50 +0700 Subject: [PATCH] version bump + update the release notes --- docs/CHANGELOG.md | 4 ++++ packaging/MSWindows/xpra.iss | 8 ++++---- packaging/debian/xpra/changelog | 6 ++++++ packaging/rpm/xpra.spec | 6 +++++- xpra/__init__.py | 2 +- 5 files changed, 20 insertions(+), 6 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index fc525f8186..9581282582 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [4.4.3] 2022-11-16 +* [build failures on 32-bit systems](https://github.com/Xpra-org/xpra/issues/3685) +* [splash screen hanging after connection failures](https://github.com/Xpra-org/xpra/commit/da0f001dc4b952774627e4d70e0bd849eaf07071) + ## [4.4.2] 2022-11-04 * [unit test errors with older versions of python pillow](https://github.com/Xpra-org/xpra/commit/7c916589e165769587100ba83e55cdea923c713e) * [worker thread cleaner termination](https://github.com/Xpra-org/xpra/commit/54775f1cba980780d88cbe197972e1de634e15cb) diff --git a/packaging/MSWindows/xpra.iss b/packaging/MSWindows/xpra.iss index e06bfc34b4..d99a6337b6 100644 --- a/packaging/MSWindows/xpra.iss +++ b/packaging/MSWindows/xpra.iss @@ -1,9 +1,9 @@ [Setup] AppName=Xpra AppId=Xpra_is1 -AppVersion=4.4.2 -AppVerName=Xpra 4.4.2 -UninstallDisplayName=Xpra 4.4.2 +AppVersion=4.4.3 +AppVerName=Xpra 4.4.3 +UninstallDisplayName=Xpra 4.4.3 AppPublisher=xpra.org AppPublisherURL=http:;xpra.org/ DefaultDirName={pf}\Xpra @@ -16,7 +16,7 @@ OutputBaseFilename=Xpra_Setup Compression=lzma2/max SolidCompression=yes AllowUNCPath=false -VersionInfoVersion=4.4.2 +VersionInfoVersion=4.4.3 VersionInfoCompany=xpra.org VersionInfoDescription=multi-platform screen and application forwarding system WizardImageFile=packaging\MSWindows\xpra-logo.bmp diff --git a/packaging/debian/xpra/changelog b/packaging/debian/xpra/changelog index 1fc328a18e..907d6ccad9 100644 --- a/packaging/debian/xpra/changelog +++ b/packaging/debian/xpra/changelog @@ -1,3 +1,9 @@ +xpra (4.4.3-1) UNRELEASED; urgency=low + * build failures on 32-bit systems + * splash screen hanging after connection failures + + -- Antoine Martin Wed, 16 Nov 2022 17:53:50 +0700 + xpra (4.4.2-1) UNRELEASED; urgency=low * unit test errors with older versions of python pillow * worker thread cleaner termination diff --git a/packaging/rpm/xpra.spec b/packaging/rpm/xpra.spec index ad63149bae..6196d70495 100644 --- a/packaging/rpm/xpra.spec +++ b/packaging/rpm/xpra.spec @@ -4,7 +4,7 @@ # later version. See the file COPYING for details. %define _disable_source_fetch 0 -%define version 4.4.2 +%define version 4.4.3 %define CFLAGS -O2 %define DEFAULT_BUILD_ARGS --with-Xdummy --without-enc_x265 --pkg-config-path=%{_libdir}/xpra/pkgconfig --rpath=%{_libdir}/xpra --without-cuda_rebuild @@ -641,6 +641,10 @@ fi %changelog +* Wed Nov 16 2022 Antoine Martin 4.4.3-10 +- build failures on 32-bit systems +- splash screen hanging after connection failures + * Fri Nov 04 2022 Antoine Martin 4.4.2-10 - unit test errors with older versions of python pillow - worker thread cleaner termination diff --git a/xpra/__init__.py b/xpra/__init__.py index f9f5df858a..3a880ad6af 100644 --- a/xpra/__init__.py +++ b/xpra/__init__.py @@ -4,4 +4,4 @@ # Xpra is released under the terms of the GNU GPL v2, or, at your option, any # later version. See the file COPYING for details. -__version__ = "4.4.2" +__version__ = "4.4.3"