Sync installer version with VERSION
This commit is contained in:
@@ -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.
|
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.
|
This is a release candidate. Expect rapid iteration and breaking changes until 1.0.
|
||||||
|
|
||||||
@@ -156,6 +156,8 @@ php artisan test --compact
|
|||||||
|
|
||||||
## Initial Release
|
## 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-rc25: Added Gitea installer script.
|
||||||
- 0.9-rc24: WAF installer improvements and ModSecurity setup fixes.
|
- 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.
|
- 0.9-rc: initial release candidate with core hosting, mail, DNS, SSL, backups, and migrations.
|
||||||
|
|||||||
@@ -11,8 +11,12 @@
|
|||||||
#
|
#
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Version - will be read from VERSION file after clone, this is fallback
|
# Version - prefer local VERSION file if present, fallback for curl installs
|
||||||
JABALI_VERSION="0.9-rc21"
|
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
|
# Colors
|
||||||
RED='\033[0;31m'
|
RED='\033[0;31m'
|
||||||
|
|||||||
@@ -11,8 +11,12 @@
|
|||||||
#
|
#
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Version - will be read from VERSION file after clone, this is fallback
|
# Version - prefer local VERSION file if present, fallback for curl installs
|
||||||
JABALI_VERSION="0.9-rc21"
|
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
|
# Colors
|
||||||
RED='\033[0;31m'
|
RED='\033[0;31m'
|
||||||
|
|||||||
Reference in New Issue
Block a user