diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b78b6ef..deecc00 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install PHP uses: shivammathur/setup-php@v2 @@ -32,7 +32,7 @@ jobs: php-version: ${{ matrix.php }} - name: Cache PHP dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: vendor key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 05dc31d..deea964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [2.0.1] - 2024-11-29 +### Fixed +- Support for Php 8.4 [#18]. + ## [2.0.0] - 2024-03-10 ### Changed - Upgraded `nikic/php-parser` to 5.x [#16]. @@ -58,7 +62,9 @@ First version [#12]: https://github.com/php-gettext/PHP-Scanner/issues/12 [#14]: https://github.com/php-gettext/PHP-Scanner/issues/14 [#16]: https://github.com/php-gettext/PHP-Scanner/issues/16 +[#18]: https://github.com/php-gettext/PHP-Scanner/issues/18 +[2.0.1]: https://github.com/php-gettext/PHP-Scanner/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/php-gettext/PHP-Scanner/compare/v1.3.1...v2.0.0 [1.3.1]: https://github.com/php-gettext/PHP-Scanner/compare/v1.3.0...v1.3.1 [1.3.0]: https://github.com/php-gettext/PHP-Scanner/compare/v1.2.2...v1.3.0