From 13983128c7d7e24d6a592964202d652157a8b0bb Mon Sep 17 00:00:00 2001 From: ildyria Date: Thu, 29 Jan 2026 13:51:42 +0100 Subject: [PATCH] Version 7.3.2 --- .../2026_01_29_125116_bump_version070302.php | 52 +++++++++++++++++++ version.md | 2 +- 2 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 database/migrations/2026_01_29_125116_bump_version070302.php diff --git a/database/migrations/2026_01_29_125116_bump_version070302.php b/database/migrations/2026_01_29_125116_bump_version070302.php new file mode 100644 index 00000000000..50212fc4aab --- /dev/null +++ b/database/migrations/2026_01_29_125116_bump_version070302.php @@ -0,0 +1,52 @@ +output = new ConsoleOutput(); + $this->msg_section = $this->output->section(); + } + + /** + * Run the migrations. + * + * @return void + */ + public function up(): void + { + DB::table('configs')->where('key', 'version')->update(['value' => '070302']); + try { + Artisan::call('cache:clear'); + } catch (\Throwable $e) { + $this->msg_section->writeln('Warning: Failed to clear cache for version 7.3.2'); + + return; + } + $this->msg_section->writeln('Info: Cleared cache for version 7.3.2'); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down(): void + { + DB::table('configs')->where('key', 'version')->update(['value' => '070301']); + } +}; diff --git a/version.md b/version.md index 34a8f745d4e..af2c571ecd9 100644 --- a/version.md +++ b/version.md @@ -1 +1 @@ -7.3.1 \ No newline at end of file +7.3.2 \ No newline at end of file