Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
jissereitsma committed Aug 10, 2021
1 parent 028f205 commit deff111
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.1] - 10 August 2021
### Fixed
- Fix error to config.xml introduced in last version (@chrisastley)

## [0.11.0] - 9 August 2021
### Added
- New option `encoding` for better performance with only `lossy` (@basvanpoppel)
Expand Down
4 changes: 2 additions & 2 deletions Test/Integration/Common.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

use Magento\Framework\App\Filesystem\DirectoryList;
use Magento\Framework\Component\ComponentRegistrar;
use Magento\Framework\View\LayoutInterface;
use Magento\TestFramework\TestCase\AbstractController;
use RuntimeException;
use Yireo\Webp2\Image\ConvertWrapper;
Expand Down Expand Up @@ -70,8 +69,9 @@ protected function getImageProvider(): ImageProvider

/**
* @param string $body
* @param array $images
*/
protected function assertImageTagsExist(string $body, $images)
protected function assertImageTagsExist(string $body, array $images)
{
foreach ($images as $image) {
$webPImage = preg_replace('/\.(png|jpg)$/', '.webp', $image);
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "yireo/magento2-webp2",
"license": "OSL-3.0",
"version": "0.11.0",
"version": "0.11.1",
"type": "magento2-module",
"homepage": "https://www.yireo.com/software/magento-extensions/webp2",
"description": "Magento 2 module to add WebP support to the Magento frontend",
Expand Down

0 comments on commit deff111

Please sign in to comment.