Skip to content

Commit

Permalink
Version 6.3.0 (#2991)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria authored Feb 14, 2025
1 parent 5d80ff3 commit b015ddb
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
32 changes: 32 additions & 0 deletions database/migrations/2025_02_06_181434_bump_version060300.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

/**
* SPDX-License-Identifier: MIT
* Copyright (c) 2017-2018 Tobias Reich
* Copyright (c) 2018-2025 LycheeOrg.
*/

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' => '060300']);
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
DB::table('configs')->where('key', 'version')->update(['value' => '060200']);
}
};
6 changes: 6 additions & 0 deletions scripts/gen_release.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
*/
$template = "<?php
/**
* SPDX-License-Identifier: MIT
* Copyright (c) 2017-2018 Tobias Reich
* Copyright (c) 2018-2025 LycheeOrg.
*/
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
Expand Down
2 changes: 1 addition & 1 deletion version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.2.0
6.3.0

0 comments on commit b015ddb

Please sign in to comment.