Skip to content

Commit

Permalink
bump version + update the release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jan 23, 2025
1 parent 6c5234d commit 44c3e67
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 9 deletions.
10 changes: 10 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [6.2.4] 2025-01-23
* Platforms, build and packaging:
* [MS Windows custom build arguments](https://github.com/Xpra-org/xpra/commit/4d15978f5d8a79a4da2b10c862b3b33625b4918e)
* [EXE manigests optional](https://github.com/Xpra-org/xpra/commit/5215b42fc3b80518b8efdb38ad24d19bcba599ed)
* [EXE installer must overwrite previous version](https://github.com/Xpra-org/xpra/commit/8c4ec6b645f523a0989f4f565cf0654fa2b7906f), [all libraries](https://github.com/Xpra-org/xpra/commit/6c5234d4fa3bb4b92cd9d01cee4abc08db5fc5f1)
* [`rpmspec` warnings](https://github.com/Xpra-org/xpra/commit/3bcf48f9dfb092e775cfa9e24c208dbd050774a6)
* [`dev-env` subcommand errors on Debian systems](https://github.com/Xpra-org/xpra/commit/a80b4e5ba00940a5fbce0b647e7d4d5ad4b3e3a8)
* Network:
* [scary warnings when RDP clients attempt to connect](https://github.com/Xpra-org/xpra/commit/5f6b4454a59952822362f204dc75f84ac9f17a23)

## [6.2.3] 2025-01-14
* Platforms, build and packaging:
* [pillow 11.1.0](https://github.com/Xpra-org/xpra/commit/e6891f9dffa6f6ab8cd2b78418870350a3d0d3f8)
Expand Down
2 changes: 1 addition & 1 deletion fs/lib/cups/backend/xpraforwarder
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import subprocess
from urllib.parse import urlparse, parse_qs


__version__ = "6.2.3"
__version__ = "6.2.4"


# Writes a syslog entry (msg) at the default facility:
Expand Down
8 changes: 4 additions & 4 deletions packaging/MSWindows/xpra.iss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[Setup]
AppName=Xpra
AppId=Xpra_is1
AppVersion=6.2.3
AppVerName=Xpra 6.2.3
UninstallDisplayName=Xpra 6.2.3
AppVersion=6.2.4
AppVerName=Xpra 6.2.4
UninstallDisplayName=Xpra 6.2.4
AppPublisher=xpra.org
AppPublisherURL=http:;xpra.org/
DefaultDirName={pf}\Xpra
Expand All @@ -16,7 +16,7 @@ OutputBaseFilename=Xpra_Setup
Compression=lzma2/max
SolidCompression=yes
AllowUNCPath=false
VersionInfoVersion=6.2.3
VersionInfoVersion=6.2.4
VersionInfoCompany=xpra.org
VersionInfoDescription=multi-platform screen and application forwarding system
WizardImageFile=packaging\MSWindows\xpra-logo.bmp
Expand Down
12 changes: 12 additions & 0 deletions packaging/debian/xpra/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
xpra (6.2.4-1) UNRELEASED; urgency=low
* Platforms, build and packaging:
MS Windows custom build arguments
EXE manigests optional
EXE installer must overwrite previous version, all libraries
`rpmspec` warnings
`dev-env` subcommand errors on Debian systems
* Network:
scary warnings when RDP clients attempt to connect

-- Antoine Martin <[email protected]> Thu, 23 Jan 2025 10:20:39 +0700

xpra (6.2.3-1) UNRELEASED; urgency=low
* Platforms, build and packaging:
pillow 11.1.0
Expand Down
12 changes: 11 additions & 1 deletion packaging/rpm/xpra.spec
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ autoprov: no
%endif

Name: %{package_prefix}
Version: 6.2.3
Version: 6.2.4
Summary: Xpra gives you "persistent remote applications" for X.
Group: Networking
License: GPLv2+ and BSD and LGPLv3+ and MIT
Expand Down Expand Up @@ -915,6 +915,16 @@ fi


%changelog
- Thu Jan 23 2025 Antoine Martin <[email protected]> 6.2.4-10
- Platforms, build and packaging:
MS Windows custom build arguments
EXE manigests optional
EXE installer must overwrite previous version, all libraries
`rpmspec` warnings
`dev-env` subcommand errors on Debian systems
- Network:
scary warnings when RDP clients attempt to connect

* Tue Jan 14 2025 Antoine Martin <[email protected]> 6.2.3-10
- Platforms, build and packaging:
pillow 11.1.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "xpra"
version = "6.2.3"
version = "6.2.4"
authors = [
{name = "Antoine Martin", email = "[email protected]"},
{name = "Nathaniel Smith", email = "[email protected]"},
Expand Down
4 changes: 2 additions & 2 deletions xpra/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# 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_info__ = (6, 2, 3)
__version__ = "6.2.3"
__version_info__ = (6, 2, 4)
__version__ = "6.2.4"

0 comments on commit 44c3e67

Please sign in to comment.