From 3d591dd8f9e030d772dd34194b6acd6a106818a7 Mon Sep 17 00:00:00 2001 From: Florian Paul Azim Hoberg Date: Tue, 6 Jan 2026 08:00:48 +0100 Subject: [PATCH] release: Create release 1.2.0 Fixes: #18 --- ProxCLMC/src/main.rs | 2 +- README.md | 10 ++++++++-- debian/changelog | 6 ++++++ 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ProxCLMC/src/main.rs b/ProxCLMC/src/main.rs index a6a4c97..114a466 100644 --- a/ProxCLMC/src/main.rs +++ b/ProxCLMC/src/main.rs @@ -221,7 +221,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.1.0"); + println!("Version: 1.2.0"); println!("Author: Florian Paul Azim Hoberg @gyptazy "); println!("GitHub: https://github.com/gyptazy/ProxCLMC"); std::process::exit(0); diff --git a/README.md b/README.md index b40da0d..ad55fe1 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,12 @@ test-pmx02 | 10.10.10.22 | x86-64-v3 Cluster CPU type: x86-64-v3 ``` +For pipeline integration it can also simply be called with `--list-only` argument to return only the desired CPU type: +``` +$> proxclmc --list-only +x86-64-v3 +``` + ## Installation ### Requirements / Dependencies * Proxmox VE Cluster @@ -73,8 +79,8 @@ apt-get update && apt-get -y install proxclmc ### Install: Via .deb Package As an alternative, you can also simply download the Debian package from [@gyptazy](https://github.com/gyptazy)'s CDN and install it afterwards: ``` -wget https://cdn.gyptazy.com/debian/proxclmc/proxclmc_1.0.0_amd64.deb -dpkg -i proxclmc_1.0.0_amd64.deb +wget https://cdn.gyptazy.com/debian/proxclmc/proxclmc_1.2.0_amd64.deb +dpkg -i proxclmc_1.2.0_amd64.deb ``` ### Usage (Run proxclmc) diff --git a/debian/changelog b/debian/changelog index 62edce3..4ab26ae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +proxclmc (1.2.0) stable; urgency=medium + + * Add list only mode to print out desired cpu type to stdout. (Closes: #16) + + -- Florian Paul Azim Hoberg Tue, 06 Jan 2026 07:43:34 +0001 + proxclmc (1.1.0) stable; urgency=medium * Add non cluster mode to also support standalone PVE nodes. (Closes: #13)