From ac41342888f3c19fe71627527e28872199b8a67d Mon Sep 17 00:00:00 2001 From: ildyria Date: Wed, 28 Jan 2026 08:50:41 +0100 Subject: [PATCH] version 7.3.1 for automated deployement --- .../2026_01_28_075019_bump_version070301.php | 52 +++++++++++++++++++ version.md | 2 +- 2 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 database/migrations/2026_01_28_075019_bump_version070301.php diff --git a/database/migrations/2026_01_28_075019_bump_version070301.php b/database/migrations/2026_01_28_075019_bump_version070301.php new file mode 100644 index 00000000000..29f10fbc087 --- /dev/null +++ b/database/migrations/2026_01_28_075019_bump_version070301.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' => '070301']); + try { + Artisan::call('cache:clear'); + } catch (\Throwable $e) { + $this->msg_section->writeln('Warning: Failed to clear cache for version 7.3.1'); + + return; + } + $this->msg_section->writeln('Info: Cleared cache for version 7.3.1'); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down(): void + { + DB::table('configs')->where('key', 'version')->update(['value' => '070300']); + } +}; diff --git a/version.md b/version.md index 8b23b8d47ce..34a8f745d4e 100644 --- a/version.md +++ b/version.md @@ -1 +1 @@ -7.3.0 \ No newline at end of file +7.3.1 \ No newline at end of file