From 0115c0ee3b693d9d6fda40146c1ae1fbda8cede1 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Sat, 14 Sep 2024 22:18:51 +0700 Subject: [PATCH] bump version --- docs/CHANGELOG.md | 8 ++++++++ fs/lib/cups/backend/xpraforwarder | 2 +- packaging/MSWindows/xpra.iss | 8 ++++---- packaging/debian/xpra/changelog | 10 ++++++++++ packaging/rpm/xpra.spec | 10 +++++++++- xpra/__init__.py | 2 +- 6 files changed, 33 insertions(+), 7 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index f641dd5c86..99f641d415 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [5.0.11] 2024-09-14 +* Platforms, build and packaging: + * [don't build ffmpeg encoder on MacOS](https://github.com/Xpra-org/xpra/commit/bf2f1a3f4927428da0ae4c5d40e5125c4c8617d0) + * [RPM builds without nvidia codecs failed](https://github.com/Xpra-org/xpra/commit/eeb6fd4cfb7c9c486b0c5649a993c4dc79099f34) + * [RPM simplify Fedora feature checks](https://github.com/Xpra-org/xpra/commit/034b0a5c5891595b9cbda687f1fed2c25607e4cb) +* Major: + * [verify ssl certificates can be accessed - not just the parent directory](https://github.com/Xpra-org/xpra/commit/f6e1caf75025a9f9354b587262d1350f7f915944) + ## [5.0.10] 2024-09-10 * Platforms, build and packaging: * [syntax compatibility fix](https://github.com/Xpra-org/xpra/commit/8b56099122a8a8f6f753b97421910de487c30335), [and another one](https://github.com/Xpra-org/xpra/commit/a74a949e90c5fb397c8e6cf590e9fed4aad10de4) diff --git a/fs/lib/cups/backend/xpraforwarder b/fs/lib/cups/backend/xpraforwarder index 0dd2237ef2..a665258532 100755 --- a/fs/lib/cups/backend/xpraforwarder +++ b/fs/lib/cups/backend/xpraforwarder @@ -38,7 +38,7 @@ import subprocess, traceback from urllib.parse import urlparse, parse_qs -__version__ = "5.0.10" +__version__ = "5.0.11" #Writes a syslog entry (msg) at the default facility: diff --git a/packaging/MSWindows/xpra.iss b/packaging/MSWindows/xpra.iss index 1fd6fbe7fb..2f06de6c24 100644 --- a/packaging/MSWindows/xpra.iss +++ b/packaging/MSWindows/xpra.iss @@ -1,9 +1,9 @@ [Setup] AppName=Xpra AppId=Xpra_is1 -AppVersion=5.0.10 -AppVerName=Xpra 5.0.10 -UninstallDisplayName=Xpra 5.0.10 +AppVersion=5.0.11 +AppVerName=Xpra 5.0.11 +UninstallDisplayName=Xpra 5.0.11 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=5.0.10 +VersionInfoVersion=5.0.11 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 2d81e818b5..5396e94b73 100644 --- a/packaging/debian/xpra/changelog +++ b/packaging/debian/xpra/changelog @@ -1,3 +1,13 @@ +xpra (5.0.11-1) UNRELEASED; urgency=low + * Platforms, build and packaging: + - don't build ffmpeg encoder on MacOS + - RPM builds without nvidia codecs failed + - RPM simplify Fedora feature checks + * Major: + - verify ssl certificates can be accessed - not just the parent directory + + -- Antoine Martin Sat, 14 Sep 2024 22:13:37 +0700 + xpra (5.0.10-1) UNRELEASED; urgency=low * Platforms, build and packaging: - syntax compatibility fixes diff --git a/packaging/rpm/xpra.spec b/packaging/rpm/xpra.spec index 7a52e6f618..044c142b38 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 5.0.10 +%define version 5.0.11 %define CFLAGS -O2 %define DEFAULT_BUILD_ARGS --with-Xdummy --without-Xdummy_wrapper --without-csc_cython --without-evdi --without-cuda_rebuild @@ -785,6 +785,14 @@ fi %changelog +* Sat Sep 14 2024 Antoine Martin 5.0.11-10 +- Platforms, build and packaging: + don't build ffmpeg encoder on MacOS + RPM builds without nvidia codecs failed + RPM simplify Fedora feature checks +- Major: + verify ssl certificates can be accessed - not just the parent directory + * Tue Sep 10 2024 Antoine Martin 5.0.10-10 - Platforms, build and packaging: syntax compatibility fixes diff --git a/xpra/__init__.py b/xpra/__init__.py index 19a7ddae94..f633a42f56 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__ = "5.0.10" +__version__ = "5.0.11"