Sync installer version with VERSION

This commit is contained in:
root
2026-01-29 04:01:43 +02:00
parent 0172189887
commit 0bf51efda5
4 changed files with 16 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
A modern web hosting control panel for WordPress and general PHP hosting. Built with Laravel 12, Filament v5, Livewire 4, and Tailwind CSS v4.
Version: 0.9-rc25 (release candidate)
Version: 0.9-rc27 (release candidate)
This is a release candidate. Expect rapid iteration and breaking changes until 1.0.
@@ -156,6 +156,8 @@ php artisan test --compact
## Initial Release
- 0.9-rc27: Installers now read VERSION when available.
- 0.9-rc26: Updated installer version banner.
- 0.9-rc25: Added Gitea installer script.
- 0.9-rc24: WAF installer improvements and ModSecurity setup fixes.
- 0.9-rc: initial release candidate with core hosting, mail, DNS, SSL, backups, and migrations.

View File

@@ -1 +1 @@
VERSION=0.9-rc25
VERSION=0.9-rc27

View File

@@ -11,8 +11,12 @@
#
set -e
# Version - will be read from VERSION file after clone, this is fallback
JABALI_VERSION="0.9-rc21"
# Version - prefer local VERSION file if present, fallback for curl installs
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
if [[ -f "$SCRIPT_DIR/VERSION" ]]; then
JABALI_VERSION="$(sed -n 's/^VERSION=//p' "$SCRIPT_DIR/VERSION")"
fi
JABALI_VERSION="${JABALI_VERSION:-0.9-rc26}"
# Colors
RED='\033[0;31m'

View File

@@ -11,8 +11,12 @@
#
set -e
# Version - will be read from VERSION file after clone, this is fallback
JABALI_VERSION="0.9-rc21"
# Version - prefer local VERSION file if present, fallback for curl installs
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
if [[ -f "$SCRIPT_DIR/VERSION" ]]; then
JABALI_VERSION="$(sed -n 's/^VERSION=//p' "$SCRIPT_DIR/VERSION")"
fi
JABALI_VERSION="${JABALI_VERSION:-0.9-rc26}"
# Colors
RED='\033[0;31m'