Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Jan 12, 2024
1 parent 0a10b94 commit b15bd73
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ jobs:
runs-on: ubuntu-latest

strategy:
matrix:
php:
- 7.2
- 7.3
- 7.4
composer-args: [ "" ]
include:
- php: 8.0
composer-args: --ignore-platform-reqs
fail-fast: false
matrix:
php:
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- 8.2
- 8.3
fail-fast: false

steps:
- name: Checkout
Expand All @@ -67,7 +67,7 @@ jobs:
restore-keys: ${{ runner.os }}-php-${{ matrix.php }}-composer-

- name: Install dependencies
run: composer install --prefer-dist --no-progress ${{ matrix.composer-args }}
run: composer install --prefer-dist --no-progress

- name: Tests
run: composer test
Expand Down
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# Change Log

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.3] - 2024-01-12
### Fixed
- Updated dependencies.

## [2.0.2] - 2021-08-12
### Fixed
- Updated `wyrihaximus/html-compress` for PHP 8.
Expand Down Expand Up @@ -68,12 +71,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Changed
- Updated to `http-interop/http-middleware#0.3`

## 0.1.0 - 2016-10-10
## [0.1.0] - 2016-10-10
First version

[#3]: https://github.com/middlewares/minifier/issues/3
[#4]: https://github.com/middlewares/minifier/issues/4

[2.0.3]: https://github.com/middlewares/minifier/compare/v2.0.2...v2.0.3
[2.0.2]: https://github.com/middlewares/minifier/compare/v2.0.1...v2.0.2
[2.0.1]: https://github.com/middlewares/minifier/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/middlewares/minifier/compare/v1.1.0...v2.0.0
Expand All @@ -84,3 +88,4 @@ First version
[0.3.1]: https://github.com/middlewares/minifier/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/middlewares/minifier/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/middlewares/minifier/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/middlewares/minifier/releases/tag/v0.1.0

0 comments on commit b15bd73

Please sign in to comment.