From 3653ced6da2a0442f779d43903ae47c8da82cada Mon Sep 17 00:00:00 2001 From: Alexander Renz Date: Wed, 7 Jan 2026 15:41:08 +0100 Subject: [PATCH] Bump version to 3.42.1 --- CHANGELOG.md | 2 +- CONTRIBUTING.md | 2 +- README.md | 2 +- RELEASE_NOTES.md | 8 ++++---- bin/README.md | 6 +++--- build_all.sh | 2 +- internal/engine/clone.go | 2 +- internal/engine/mysqldump.go | 2 +- internal/engine/snapshot_engine.go | 2 +- main.go | 2 +- 10 files changed, 15 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e62f40..aefcfb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to dbbackup 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). -## [3.42.0] - 2026-01-07 "Resistance is Futile" +## [3.42.1] - 2026-01-07 "Resistance is Futile" ### Added - Content-Defined Chunking Deduplication diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c8e9b44..7522a38 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ Be respectful, constructive, and professional in all interactions. We're buildin **Bug Report Template:** ``` -**Version:** dbbackup v3.42.0 +**Version:** dbbackup v3.42.1 **OS:** Linux/macOS/BSD **Database:** PostgreSQL 14 / MySQL 8.0 / MariaDB 10.6 **Command:** The exact command that failed diff --git a/README.md b/README.md index ea0a940..85c1dab 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Download from [releases](https://git.uuxo.net/UUXO/dbbackup/releases): ```bash # Linux x86_64 -wget https://git.uuxo.net/UUXO/dbbackup/releases/download/v3.42.0/dbbackup-linux-amd64 +wget https://git.uuxo.net/UUXO/dbbackup/releases/download/v3.42.1/dbbackup-linux-amd64 chmod +x dbbackup-linux-amd64 sudo mv dbbackup-linux-amd64 /usr/local/bin/dbbackup ``` diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index bf1243b..5411de7 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ -# v3.42.0 Release Notes +# v3.42.1 Release Notes -## What's New in v3.42.0 +## What's New in v3.42.1 ### Deduplication - Resistance is Futile @@ -53,7 +53,7 @@ dbbackup dedup gc # Garbage collect unreferenced chunks #### Quick Install (Recommended) ```bash # Download for your platform -curl -LO https://git.uuxo.net/UUXO/dbbackup/releases/download/v3.42.0/dbbackup-linux-amd64 +curl -LO https://git.uuxo.net/UUXO/dbbackup/releases/download/v3.42.1/dbbackup-linux-amd64 # Install with systemd service chmod +x dbbackup-linux-amd64 @@ -105,4 +105,4 @@ Available at `http://localhost:9399/metrics`: --- -**Full Changelog**: https://git.uuxo.net/UUXO/dbbackup/compare/v3.41.1...v3.42.0 +**Full Changelog**: https://git.uuxo.net/UUXO/dbbackup/compare/v3.41.1...v3.42.1 diff --git a/bin/README.md b/bin/README.md index 2eed054..2eceece 100644 --- a/bin/README.md +++ b/bin/README.md @@ -3,9 +3,9 @@ This directory contains pre-compiled binaries for the DB Backup Tool across multiple platforms and architectures. ## Build Information -- **Version**: 3.42.0 -- **Build Time**: 2026-01-07_14:05:23_UTC -- **Git Commit**: c519f08 +- **Version**: 3.42.1 +- **Build Time**: 2026-01-07_14:38:01_UTC +- **Git Commit**: 9743d57 ## Recent Updates (v1.1.0) - ✅ Fixed TUI progress display with line-by-line output diff --git a/build_all.sh b/build_all.sh index ae25b85..a641023 100755 --- a/build_all.sh +++ b/build_all.sh @@ -15,7 +15,7 @@ echo "🔧 Using Go version: $GO_VERSION" # Configuration APP_NAME="dbbackup" -VERSION="3.42.0" +VERSION="3.42.1" BUILD_TIME=$(date -u '+%Y-%m-%d_%H:%M:%S_UTC') GIT_COMMIT=$(git rev-parse --short HEAD 2>/dev/null || echo "unknown") BIN_DIR="bin" diff --git a/internal/engine/clone.go b/internal/engine/clone.go index 7007081..92a36e0 100644 --- a/internal/engine/clone.go +++ b/internal/engine/clone.go @@ -339,7 +339,7 @@ func (e *CloneEngine) Backup(ctx context.Context, opts *BackupOptions) (*BackupR // Save metadata meta := &metadata.BackupMetadata{ - Version: "3.42.0", + Version: "3.42.1", Timestamp: startTime, Database: opts.Database, DatabaseType: "mysql", diff --git a/internal/engine/mysqldump.go b/internal/engine/mysqldump.go index 9a6db7f..97f06ae 100644 --- a/internal/engine/mysqldump.go +++ b/internal/engine/mysqldump.go @@ -254,7 +254,7 @@ func (e *MySQLDumpEngine) Backup(ctx context.Context, opts *BackupOptions) (*Bac // Save metadata meta := &metadata.BackupMetadata{ - Version: "3.42.0", + Version: "3.42.1", Timestamp: startTime, Database: opts.Database, DatabaseType: "mysql", diff --git a/internal/engine/snapshot_engine.go b/internal/engine/snapshot_engine.go index caa1a4e..baf6023 100644 --- a/internal/engine/snapshot_engine.go +++ b/internal/engine/snapshot_engine.go @@ -223,7 +223,7 @@ func (e *SnapshotEngine) Backup(ctx context.Context, opts *BackupOptions) (*Back // Save metadata meta := &metadata.BackupMetadata{ - Version: "3.42.0", + Version: "3.42.1", Timestamp: startTime, Database: opts.Database, DatabaseType: "mysql", diff --git a/main.go b/main.go index f9ae6a8..bc7d86d 100755 --- a/main.go +++ b/main.go @@ -16,7 +16,7 @@ import ( // Build information (set by ldflags) var ( - version = "3.42.0" + version = "3.42.1" buildTime = "unknown" gitCommit = "unknown" )