Remove CLAUDE from GitHub and bump version

This commit is contained in:
root
2026-01-24 22:09:47 +02:00
parent 9d866cbac0
commit 5208992deb
3 changed files with 3 additions and 3 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. 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-rc1 (release candidate) Version: 0.9-rc2 (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.

View File

@@ -1 +1 @@
VERSION=0.9-rc1 VERSION=0.9-rc2

View File

@@ -14,7 +14,7 @@ class VersionFileTest extends TestCase
$content = file_get_contents($versionPath); $content = file_get_contents($versionPath);
$this->assertNotFalse($content); $this->assertNotFalse($content);
$this->assertStringContainsString('VERSION=0.9-rc1', $content); $this->assertStringContainsString('VERSION=0.9-rc2', $content);
$this->assertStringNotContainsString('BUILD=', $content); $this->assertStringNotContainsString('BUILD=', $content);
} }
} }