Update version to 3.1.0-beta for pre-release status

Changes all version references from 3.1.0 to 3.1.0-beta across:
- Main scripts (hops, install, uninstall, setup, etc.)
- Library modules (lib/*.sh)
- Documentation (README.md)

This reflects the pre-release status of the project before public release.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Stephen Klein
2025-07-17 22:51:58 -04:00
parent e7bfee7f5d
commit 7358ff679d
16 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
# HOPS - Common Utility Functions
# Shared functions for logging, error handling, and UI
# Version: 3.1.0
# Version: 3.1.0-beta
# Prevent multiple sourcing
if [[ -n "${HOPS_COMMON_LOADED:-}" ]]; then
+1 -1
View File
@@ -2,7 +2,7 @@
# HOPS - Docker Service Management
# Functions for Docker service management and monitoring
# Version: 3.1.0
# Version: 3.1.0-beta
# Source common functions
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+4 -4
View File
@@ -2,7 +2,7 @@
# HOPS - Privilege Management System
# Split operations into privileged and non-privileged components
# Version: 3.1.0
# Version: 3.1.0-beta
# Source common functions
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
@@ -158,7 +158,7 @@ create_privileged_setup() {
# HOPS Privileged Setup Script
# This script handles operations that require root privileges
# Version: 3.1.0
# Version: 3.1.0-beta
set -e
@@ -406,7 +406,7 @@ create_user_script() {
# HOPS User Script
# This script handles operations that can run as regular user
# Version: 3.1.0
# Version: 3.1.0-beta
set -e
@@ -591,7 +591,7 @@ create_installation_wrapper() {
# HOPS Installation Wrapper
# Orchestrates privileged and non-privileged installation steps
# Version: 3.1.0
# Version: 3.1.0-beta
set -e
+2 -2
View File
@@ -2,7 +2,7 @@
# HOPS - Secret Management System
# Secure encryption and management of sensitive configuration data
# Version: 3.1.0
# Version: 3.1.0-beta
# Source common functions
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
@@ -190,7 +190,7 @@ create_encrypted_environment() {
cat > "$temp_env_file" << EOF
# HOPS Environment Configuration
# Generated on: $(date)
# Version: 3.1.0
# Version: 3.1.0-beta
# Core Configuration
PUID=$puid
+1 -1
View File
@@ -2,7 +2,7 @@
# HOPS - Security Functions
# Password generation, validation, and security utilities
# Version: 3.1.0
# Version: 3.1.0-beta
# Source common functions
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+1 -1
View File
@@ -2,7 +2,7 @@
# HOPS - System Validation Functions
# Functions for system checks, OS detection, and requirements validation
# Version: 3.1.0
# Version: 3.1.0-beta
# Source common functions
LIB_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+1 -1
View File
@@ -2,7 +2,7 @@
# HOPS - Input Validation and Sanitization Functions
# Comprehensive input validation and sanitization utilities
# Version: 3.1.0
# Version: 3.1.0-beta
# Source common functions
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"