diff --git a/debian/changelog b/debian/changelog index 47d0234..36c98e1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +proxlb (1.1.1) stable; urgency=medium + + * Fix tag evluation for VMs for being ignored for further balancing. (Closes: #163) + * Improve logging verbosity of messages that had a wrong servity. (Closes: #165) + + -- Florian Paul Azim Hoberg Tue, 1 Apr 2025 18:55:02 +0000 + proxlb (1.1.0) stable; urgency=medium * Refactored code base of ProxLB. (Closes: #114) diff --git a/misc/01-replace-version.sh b/misc/01-replace-version.sh index 7cf92f9..17da7a5 100644 --- a/misc/01-replace-version.sh +++ b/misc/01-replace-version.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -VERSION="1.1.0" +VERSION="1.1.1" 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 7228c16..42a307c 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.0" +__version__ = "1.1.1" __url__ = "https://github.com/gyptazy/ProxLB" diff --git a/setup.py b/setup.py index 12b076a..b1c04ce 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="proxlb", - version="1.1.0", + version="1.1.1", 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",