Skip to content

Commit

Permalink
version 5.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Jul 4, 2024
1 parent b866cea commit 4ccf809
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 38 deletions.
67 changes: 34 additions & 33 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_07_03_170506_bump_version050501.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' => '050501']);
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
DB::table('configs')->where('key', 'version')->update(['value' => '050500']);
}
};
4 changes: 0 additions & 4 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,6 @@ parameters:
message: '#Call to an undefined method Illuminate\\Testing\\TestResponse::(assert)?(SeeLivewire|dispatch|call|Set|Count)#'
paths:
- tests
-
message: '#Call to an undefined method Livewire\\Features\\SupportTesting\\Testable::test\(\)#'
paths:
- tests
-
message: '#Dynamic call to static method PHPUnit\\Framework\\Assert::assert(Is)?(Not)?(True|False|Equals|Int|Null|Empty|Count)\(\)#'
paths:
Expand Down
2 changes: 1 addition & 1 deletion version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.5.0
5.5.1

0 comments on commit 4ccf809

Please sign in to comment.