From b32991df1252d028a562189f30d1b016dac3f41c Mon Sep 17 00:00:00 2001 From: gyptazy Date: Thu, 1 Jan 2026 11:01:10 +0100 Subject: [PATCH] release: Create release 1.1.0 --- CHANGELOG.md | 5 +++++ ProxCLMC/src/main.rs | 2 +- debian/changelog | 6 ++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0a21be..6f1faec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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.1.0] - 2026-01-01 + +### Added + +- Add non cluster mode to also support standalone PVE nodes (@gyptazy). [#13] ## [1.0.0] - 2025-12-22 diff --git a/ProxCLMC/src/main.rs b/ProxCLMC/src/main.rs index 823624b..4bda850 100644 --- a/ProxCLMC/src/main.rs +++ b/ProxCLMC/src/main.rs @@ -218,7 +218,7 @@ fn main() -> io::Result<()> { if args.version { println!("ProxCLMC"); println!("A lightweight tool to determine the maximum CPU compatibility level that is supported across all nodes in a Proxmox VE cluster."); - println!("Version: 1.0.0"); + println!("Version: 1.1.0"); println!("Author: Florian Paul Azim Hoberg @gyptazy "); println!("GitHub: https://github.com/gyptazy/ProxCLMC"); std::process::exit(0); diff --git a/debian/changelog b/debian/changelog index fe22c8e..62edce3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +proxclmc (1.1.0) stable; urgency=medium + + * Add non cluster mode to also support standalone PVE nodes. (Closes: #13) + + -- Florian Paul Azim Hoberg Thu, 01 Jan 2026 11:01:13 +0001 + proxclmc (1.0.0) stable; urgency=medium * Initial release of ProxCLMC.