Skip to content

Commit

Permalink
Merge branch 'release/1.0.9' into v1
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Feb 25, 2022
2 parents fa62882 + 3e7d054 commit c480674
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 31 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# ImageOptimize Sharp Image Transform Changelog

## 1.0.9 - 2022.02.24

### Changed

* Loosen the `composer.json` `require` constraints

## 1.0.8 - 2021.11.12
### Fixed
* Fixed an issue where transforms could fail if the file extension was not lowercase ([#4](https://github.com/nystudio107/craft-imageoptimize-sharp/issues/4))
Expand Down
61 changes: 30 additions & 31 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,33 @@
{
"name": "nystudio107/craft-imageoptimize-sharp",
"description": "Provides an Sharp image transform type for the ImageOptimize plugin.",
"type": "image-transform",
"version": "1.0.8",
"keywords": [
"craftcms",
"sharp",
"image-optimize",
"image-transform"
],
"support": {
"docs": "https://github.com/nystudio107/craft-imageoptimize-sharp/blob/v1/README.md",
"issues": "https://github.com/nystudio107/craft-imageoptimize-sharp/issues"
},
"license": "proprietary",
"authors": [
{
"name": "nystudio107",
"homepage": "https://nystudio107.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"craftcms/cms": "^3.0.0",
"nystudio107/craft-imageoptimize": "^1.6.33"
},
"autoload": {
"psr-4": {
"nystudio107\\imageoptimizesharp\\": "src/"
}
"name": "nystudio107/craft-imageoptimize-sharp",
"description": "Provides an Sharp image transform type for the ImageOptimize plugin.",
"type": "image-transform",
"version": "1.0.9",
"keywords": [
"craftcms",
"sharp",
"image-optimize",
"image-transform"
],
"support": {
"docs": "https://github.com/nystudio107/craft-imageoptimize-sharp/blob/v1/README.md",
"issues": "https://github.com/nystudio107/craft-imageoptimize-sharp/issues"
},
"license": "proprietary",
"authors": [
{
"name": "nystudio107",
"homepage": "https://nystudio107.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"nystudio107/craft-imageoptimize": "^1.6.33 || ^4.0.0-beta.1"
},
"autoload": {
"psr-4": {
"nystudio107\\imageoptimizesharp\\": "src/"
}
}
}

0 comments on commit c480674

Please sign in to comment.