From ccb0bbff41a5075c526e6eedf8cbd7030dbc0567 Mon Sep 17 00:00:00 2001 From: Ankan Saha Date: Mon, 2 Feb 2026 00:13:09 +0530 Subject: [PATCH] chore: Bump project version to 7.17.42-stable across documentation, scripts, and source code. --- INSTALLATION.md | 4 ++-- Scripts/installer.sh | 2 +- VERSION | 2 +- npm/package.json | 2 +- src/Core/main.go | 2 +- src/base/Banner.go | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/INSTALLATION.md b/INSTALLATION.md index 9fef519..fc0123c 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -19,10 +19,10 @@ This is the simplest method for Debian-based systems like Ubuntu, Debian, Linux ```bash # Download the latest .deb release -wget https://github.com/nexoral/ContainDB/releases/download/v6.16.41-stable/containDB_6.16.41-stable_amd64.deb +wget https://github.com/nexoral/ContainDB/releases/download/v7.17.42-stable/containDB_7.17.42-stable_amd64.deb # Install the package -sudo dpkg -i containDB_6.16.41-stable_amd64.deb +sudo dpkg -i containDB_7.17.42-stable_amd64.deb # If you see dependency errors, run: sudo apt-get install -f diff --git a/Scripts/installer.sh b/Scripts/installer.sh index 937668f..597dffc 100755 --- a/Scripts/installer.sh +++ b/Scripts/installer.sh @@ -7,7 +7,7 @@ ARCH=$(dpkg --print-architecture) echo "Detected architecture: $ARCH" -VERSION="6.16.41-stable" +VERSION="7.17.42-stable" if [[ "$ARCH" == "amd64" ]]; then PKG="containdb_${VERSION}_amd64.deb" diff --git a/VERSION b/VERSION index 5130aaa..62552e0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.16.41-stable +7.17.42-stable diff --git a/npm/package.json b/npm/package.json index 09634b2..5229dbf 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,6 +1,6 @@ { "name": "containdb", - "version": "6.16.41", + "version": "7.17.42", "description": "The Ultimate Docker Database Manager. Automate the creation, management, and monitoring of containerized databases (MongoDB, MySQL, PostgreSQL, Redis) and their GUI tools (Compass, phpMyAdmin, PgAdmin, RedisInsight) with a simple CLI. No complex Docker commands—just productivity.", "bin": { "containdb": "./InstallController.js" diff --git a/src/Core/main.go b/src/Core/main.go index afcc118..4ea641a 100644 --- a/src/Core/main.go +++ b/src/Core/main.go @@ -11,7 +11,7 @@ import ( ) func main() { - VERSION := "6.16.41-stable" + VERSION := "7.17.42-stable" // handle version flag without requiring sudo if len(os.Args) > 1 && os.Args[1] == "--version" { diff --git a/src/base/Banner.go b/src/base/Banner.go index dc122b2..e61bd33 100644 --- a/src/base/Banner.go +++ b/src/base/Banner.go @@ -9,7 +9,7 @@ import ( "github.com/fatih/color" ) -const Version = "6.16.41-stable" +const Version = "7.17.42-stable" func ShowBanner() { // Define styles