From 97e78527523f32ea5ffc61d12e6bd71be264d9b9 Mon Sep 17 00:00:00 2001 From: Colin Viebrock Date: Sat, 6 Jan 2024 15:18:38 -0600 Subject: [PATCH] bump version, update test actions --- .github/workflows/tests.yml | 4 ++-- CHANGELOG.md | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 240275a..cb986a3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 with: @@ -39,7 +39,7 @@ jobs: id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: dependencies-${{ matrix.php }}-${{ matrix.stability }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 00899b4..4f5df83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 10.0.1 - 06-Jan-2024 + +- fixes for morph relations (#140, thanks @anaxamaxan) + + ## 10.0.0 - 17-Feb-2023 - Laravel 10.0 support