From 83449c97061a14487ca6a80caefea5d75b592f5b Mon Sep 17 00:00:00 2001 From: Attila Fulop <1162360+fulopattila122@users.noreply.github.com> Date: Mon, 25 Sep 2023 15:42:03 +0300 Subject: [PATCH] Bumped minimal Laravel version to 8.75 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Yes it was a trial and error fix. Using the CI 👼 --- .github/workflows/tests.yml | 2 +- Changelog.md | 2 +- composer.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9f0e184..c8e63d8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.0', '8.1', '8.2'] - laravel: ['8.68', '8.83', '9.0', '9.52', '10.0', '10.24'] + laravel: ['8.75', '8.83', '9.0', '9.52', '10.0', '10.24'] enum: ['2', '3', '4'] exclude: - php: '8.0' diff --git a/Changelog.md b/Changelog.md index a1c640b..3551ecb 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,7 +4,7 @@ ## Unreleased ##### 2023-XX-YY -- Bumped minimal Laravel version to 8.68 +- Bumped minimal Laravel version to 8.75 - Fixed issue where CastEnum did not take in account hidden or visible properties from Eloquent ## 1.9.0 diff --git a/composer.json b/composer.json index 6fa2609..8d03c1d 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ "require": { "php": "^8.0", "konekt/enum": "^2.0.2 || ^3.0 | ^4.0", - "illuminate/database": "^8.68|9.*|10.*" + "illuminate/database": "^8.75|9.*|10.*" }, "require-dev": { "phpunit/phpunit": "9 - 10",