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