From 48b8a07135721b855633fdd122d9606b997056a7 Mon Sep 17 00:00:00 2001 From: gyptazy Date: Tue, 24 Dec 2024 10:59:40 +0100 Subject: [PATCH] release: Create release 1.0.6 --- .changelogs/1.0.6/release_meta.yml | 2 +- CHANGELOG.md | 6 ++++++ README.md | 5 +++-- packaging/CMakeLists.txt | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.changelogs/1.0.6/release_meta.yml b/.changelogs/1.0.6/release_meta.yml index c19765d..7994744 100644 --- a/.changelogs/1.0.6/release_meta.yml +++ b/.changelogs/1.0.6/release_meta.yml @@ -1 +1 @@ -date: TBD +date: 2024-12-24 diff --git a/CHANGELOG.md b/CHANGELOG.md index 29e04f2..cd4ebcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.6] - 2024-12-24 + +### Fixed + +- Fix maintenance mode when using cli arg and config mode by using the merged list (by @CartCaved). [#119] +- Fix that a scheduler time definition of 1 (int) gets wrongly interpreted as a bool (by @gyptazy). [#115] ## [1.0.5] - 2024-10-30 diff --git a/README.md b/README.md index 0febb5f..d7a9625 100644 --- a/README.md +++ b/README.md @@ -270,8 +270,8 @@ The executable must be able to read the config file, if no dedicated config file The easiest way to get started is by using the ready-to-use packages that I provide on my CDN and to run it on a Linux Debian based system. This can also be one of the Proxmox nodes itself. ``` -wget https://cdn.gyptazy.com/files/os/debian/proxlb/proxlb_1.0.5_amd64.deb -dpkg -i proxlb_1.0.5_amd64.deb +wget https://cdn.gyptazy.com/files/os/debian/proxlb/proxlb_1.0.6_amd64.deb +dpkg -i proxlb_1.0.6_amd64.deb # Adjust your config vi /etc/proxlb/proxlb.conf systemctl restart proxlb @@ -368,6 +368,7 @@ Container Images for Podman, Docker etc., can be found at: | Version | Image | |------|:------:| | latest | cr.gyptazy.com/proxlb/proxlb:latest | +| v1.0.6 | cr.gyptazy.com/proxlb/proxlb:v1.0.6 | | v1.0.5 | cr.gyptazy.com/proxlb/proxlb:v1.0.5 | | v1.0.4 | cr.gyptazy.com/proxlb/proxlb:v1.0.4 | | v1.0.3 | cr.gyptazy.com/proxlb/proxlb:v1.0.3 | diff --git a/packaging/CMakeLists.txt b/packaging/CMakeLists.txt index c393667..5c9b553 100644 --- a/packaging/CMakeLists.txt +++ b/packaging/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.16) -project(proxmox-rebalancing-service VERSION 1.0.5) +project(proxmox-rebalancing-service VERSION 1.0.6) install(PROGRAMS ../proxlb DESTINATION /bin) install(FILES ../proxlb.conf DESTINATION /etc/proxlb)