From 9884186a9949d85e35c748dbc1784f1ac0aa50d7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 14 Dec 2025 01:49:58 +0000 Subject: [PATCH 2/3] Update version to 1.5.1 and prepare stable release Co-authored-by: ShaYmez <76499782+ShaYmez@users.noreply.github.com> --- CHANGELOG.md | 8 +++++++- VERSION | 2 +- hblink3-docker-install.sh | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b81ca0..9e241c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to the hblink3-docker-install project will be documented in 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). -## [Unreleased] +## [1.5.1] - 2024-12-14 ### Changed - **BREAKING CHANGE - Modern Python Package Management**: For Debian 12+ (Bookworm/Trixie), HBMonv2 now uses a Python virtual environment instead of system-wide package installation @@ -31,6 +31,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Virtual environment is automatically activated during installation - pip is upgraded within the virtual environment for latest features +### Release Information +- Docker upstream repository version: 2.0.2 +- Docker version: alpine-3.20 +- Installer version: 1.5.1 (14122024) +- Full Debian 11, 12, 13 and Ubuntu 22.04, 24.04 LTS support confirmed + ## [1.5.0] - 2024-12-13 ### Verified diff --git a/VERSION b/VERSION index bc80560..26ca594 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.0 +1.5.1 diff --git a/hblink3-docker-install.sh b/hblink3-docker-install.sh index e987617..9d44d2e 100755 --- a/hblink3-docker-install.sh +++ b/hblink3-docker-install.sh @@ -1,8 +1,8 @@ #!/bin/bash # Docker version alpine-3.20 -# Version 1.5.0 (13122025) hblink3-docker-installer +# Version 1.5.1 (14122024) hblink3-docker-installer # Docker upstream repo version 2.0.2 -# Release: Debian 13 (Trixie) Support Verified +# Release: Stable Release - Python Virtual Environment Support # ################################################################################## # Copyright (C) 2021-2025 Shane Daley, M0VUB aka ShaYmez. From d99f64b52e2549ff46cabfb9b25d72b1c4cc0cb2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 14 Dec 2025 01:52:40 +0000 Subject: [PATCH 3/3] Add .gitignore and fix uninstall script executable permissions for release compliance Co-authored-by: ShaYmez <76499782+ShaYmez@users.noreply.github.com> --- .gitignore | 43 ++++++++++++++++++++++++++++++++++++++++ usr/local/sbin/uninstall | 0 2 files changed, 43 insertions(+) create mode 100644 .gitignore mode change 100644 => 100755 usr/local/sbin/uninstall diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b1823e2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +# Temporary files +*.tmp +*.swp +*.swo +*~ +.DS_Store + +# Log files +*.log + +# Backup files +*.bak +*.backup + +# IDE and editor files +.vscode/ +.idea/ +*.sublime-* + +# Python bytecode +__pycache__/ +*.py[cod] +*$py.class +*.so + +# Virtual environments +venv/ +env/ +ENV/ + +# Distribution / packaging +dist/ +build/ +*.egg-info/ + +# Test and coverage +.coverage +htmlcov/ +.pytest_cache/ + +# Local development files +.env +.env.local diff --git a/usr/local/sbin/uninstall b/usr/local/sbin/uninstall old mode 100644 new mode 100755