Skip to content

Commit

Permalink
bump version for 4.7.2 (#1772)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria authored Mar 8, 2023
1 parent fb4e919 commit e7a7f87
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions database/migrations/2023_03_08_103109_bump_version040702.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' => '040702']);
}

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

0 comments on commit e7a7f87

Please sign in to comment.