Skip to content

Commit

Permalink
Version 5.5.0 (#2481)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria authored Jun 26, 2024
1 parent 4935468 commit cc68474
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 35 deletions.
68 changes: 34 additions & 34 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions database/migrations/2024_06_25_153527_bump_version050500.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;

return new class() extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
{
DB::table('configs')->where('key', 'version')->update(['value' => '050500']);
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
DB::table('configs')->where('key', 'version')->update(['value' => '050400']);
}
};
2 changes: 1 addition & 1 deletion version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.4.0
5.5.0

0 comments on commit cc68474

Please sign in to comment.