diff --git a/debian/changelog b/debian/changelog index 96cf7b1..48cabef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +proxlb (1.1.3~beta1) stable; urgency=medium + + * Build for 1.1.3 beta. + + -- Florian Paul Azim Hoberg Thu, 22 May 2025 06:58:12 +0000 + proxlb (1.1.2) stable; urgency=medium * Add a configurable retry mechanism when connecting to the Proxmox API. (Closed: #157) diff --git a/proxlb/utils/version.py b/proxlb/utils/version.py index f7ad34e..7a56860 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.2" +__version__ = "1.1.3b" __url__ = "https://github.com/gyptazy/ProxLB" diff --git a/setup.py b/setup.py index 16685cd..a358cfd 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="proxlb", - version="1.1.2", + version="1.1.3b", 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",