From 366d5bc26496a70977d17300d18c1c92573ad6c6 Mon Sep 17 00:00:00 2001 From: gyptazy Date: Sat, 19 Apr 2025 20:10:49 +0200 Subject: [PATCH] release: Prepare release v1.1.2 --- .changelogs/1.1.2/release_meta.yml | 1 + debian/changelog | 8 +++++++- misc/01-replace-version.sh | 2 +- proxlb/utils/version.py | 2 +- setup.py | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 .changelogs/1.1.2/release_meta.yml diff --git a/.changelogs/1.1.2/release_meta.yml b/.changelogs/1.1.2/release_meta.yml new file mode 100644 index 0000000..c19765d --- /dev/null +++ b/.changelogs/1.1.2/release_meta.yml @@ -0,0 +1 @@ +date: TBD diff --git a/debian/changelog b/debian/changelog index f945fb0..a43c234 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +proxlb (1.1.2~b1) stable; urgency=medium + + * Auto-created 1.1.2 beta 1 release. + + -- Florian Paul Azim Hoberg Mon, 17 Mar 2025 18:55:02 +0000 + proxlb (1.1.1) stable; urgency=medium * Fix tag evluation for VMs for being ignored for further balancing. (Closes: #163) @@ -12,7 +18,7 @@ proxlb (1.1.1) stable; urgency=medium * Fix the guest type relationship in the logs when a migration job failed. (Closes: #204) * Requery a guest if that running guest reports 0 cpu usage. (Closes: #200) - -- Florian Paul Azim Hoberg Tue, 1 Apr 2025 18:55:02 +0000 + -- Florian Paul Azim Hoberg Sat, 20 Apr 2025 20:55:02 +0000 proxlb (1.1.0) stable; urgency=medium diff --git a/misc/01-replace-version.sh b/misc/01-replace-version.sh index 17da7a5..38e8836 100644 --- a/misc/01-replace-version.sh +++ b/misc/01-replace-version.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -VERSION="1.1.1" +VERSION="1.1.2b" sed -i "s/^__version__ = .*/__version__ = \"$VERSION\"/" "proxlb/utils/version.py" sed -i "s/version=\"[0-9]*\.[0-9]*\.[0-9]*\"/version=\"$VERSION\"/" setup.py diff --git a/proxlb/utils/version.py b/proxlb/utils/version.py index 42a307c..d1a1084 100644 --- a/proxlb/utils/version.py +++ b/proxlb/utils/version.py @@ -3,5 +3,5 @@ __app_desc__ = "A DRS alike loadbalancer for Proxmox clusters." __author__ = "Florian Paul Azim Hoberg " __copyright__ = "Copyright (C) 2025 Florian Paul Azim Hoberg (@gyptazy)" __license__ = "GPL-3.0" -__version__ = "1.1.1" +__version__ = "1.1.2b" __url__ = "https://github.com/gyptazy/ProxLB" diff --git a/setup.py b/setup.py index b1c04ce..a3537dc 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="proxlb", - version="1.1.1", + version="1.1.2b", description="A DRS alike loadbalancer for Proxmox clusters.", long_description="An advanced DRS alike loadbalancer for Proxmox clusters that also supports maintenance modes and affinity/anti-affinity rules.", author="Florian Paul Azim Hoberg",