diff --git a/.all-contributorsrc b/.all-contributorsrc index df857307..6f298d72 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -1310,6 +1310,15 @@ "contributions": [ "code" ] + }, + { + "login": "AnotherPillow", + "name": "AnotherPillow", + "avatar_url": "https://avatars.githubusercontent.com/u/85362273?v=4", + "profile": "https://github.com/AnotherPillow", + "contributions": [ + "doc" + ] } ], "contributorsPerLine": 7, diff --git a/CHANGELOG.md b/CHANGELOG.md index f99d2502..69756ceb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +# v0.22.11 (Fri Feb 23 2024) + +:tada: This release contains work from new contributors! :tada: + +Thanks for all your work! + +:heart: Rob Juurlink ([@kozmoz](https://github.com/kozmoz)) + +:heart: null[@AnotherPillow](https://github.com/AnotherPillow) + +#### 🚀 Enhancement + +- `@jimp/plugin-print` + - Add \n support for image.print #865 [#1265](https://github.com/jimp-dev/jimp/pull/1265) (juurr00@juurlink.org [@kozmoz](https://github.com/kozmoz) [@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 📝 Documentation + +- `jimp` + - Fix it's/its, see description. [#1267](https://github.com/jimp-dev/jimp/pull/1267) ([@AnotherPillow](https://github.com/AnotherPillow)) + +#### Authors: 4 + +- [@AnotherPillow](https://github.com/AnotherPillow) +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- juurr00 (juurr00@juurlink.org) +- Rob Juurlink ([@kozmoz](https://github.com/kozmoz)) + +--- + # v0.22.10 (Wed Jul 26 2023) :tada: This release contains work from a new contributor! :tada: diff --git a/README.md b/README.md index e5cb182f..95211eac 100755 --- a/README.md +++ b/README.md @@ -309,6 +309,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
JunkMeal

📖
Nicolas Morel

💻
Zach Stevenson

💻 +
AnotherPillow

📖 diff --git a/lerna.json b/lerna.json index 6aa25648..7389c6b0 100644 --- a/lerna.json +++ b/lerna.json @@ -2,6 +2,6 @@ "lerna": "^7.1.4", "npmClient": "yarn", "registry": "https://registry.npmjs.org/", - "version": "0.22.10", + "version": "0.22.11", "packages": ["packages/*"] } diff --git a/packages/core/package.json b/packages/core/package.json index 566bba82..01a92354 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/core", - "version": "0.22.10", + "version": "0.22.11", "description": "Jimp core", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/custom/package.json b/packages/custom/package.json index ddd9f21c..052d6d3f 100644 --- a/packages/custom/package.json +++ b/packages/custom/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/custom", - "version": "0.22.10", + "version": "0.22.11", "description": "Interface to customize jimp configuration", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/jimp/CHANGELOG.md b/packages/jimp/CHANGELOG.md index 41ce8465..0f13fccd 100644 --- a/packages/jimp/CHANGELOG.md +++ b/packages/jimp/CHANGELOG.md @@ -1,3 +1,19 @@ +# v0.22.11 (Fri Feb 23 2024) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, null[@AnotherPillow](https://github.com/AnotherPillow), for all your work! + +#### 📝 Documentation + +- Fix it's/its, see description. [#1267](https://github.com/jimp-dev/jimp/pull/1267) ([@AnotherPillow](https://github.com/AnotherPillow)) + +#### Authors: 1 + +- [@AnotherPillow](https://github.com/AnotherPillow) + +--- + # v0.22.9 (Wed Jul 26 2023) :tada: This release contains work from a new contributor! :tada: diff --git a/packages/jimp/package.json b/packages/jimp/package.json index 56c000c4..59bd8b2c 100644 --- a/packages/jimp/package.json +++ b/packages/jimp/package.json @@ -1,6 +1,6 @@ { "name": "jimp", - "version": "0.22.10", + "version": "0.22.11", "description": "An image processing library written entirely in JavaScript (i.e. zero external or native dependencies)", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-blit/package.json b/packages/plugin-blit/package.json index 07ebbd15..291924d9 100644 --- a/packages/plugin-blit/package.json +++ b/packages/plugin-blit/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-blit", - "version": "0.22.10", + "version": "0.22.11", "description": "Blit an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-blur/package.json b/packages/plugin-blur/package.json index 564eb0e0..dd699844 100644 --- a/packages/plugin-blur/package.json +++ b/packages/plugin-blur/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-blur", - "version": "0.22.10", + "version": "0.22.11", "description": "blur an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-circle/package.json b/packages/plugin-circle/package.json index 10115147..7e8c6422 100644 --- a/packages/plugin-circle/package.json +++ b/packages/plugin-circle/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-circle", - "version": "0.22.10", + "version": "0.22.11", "description": "Creates a circle out of an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-color/package.json b/packages/plugin-color/package.json index 85e04306..eb607041 100644 --- a/packages/plugin-color/package.json +++ b/packages/plugin-color/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-color", - "version": "0.22.10", + "version": "0.22.11", "description": "Bitmap manipulation to adjust the color in an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-contain/package.json b/packages/plugin-contain/package.json index 815d60eb..6e098cfa 100644 --- a/packages/plugin-contain/package.json +++ b/packages/plugin-contain/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-contain", - "version": "0.22.10", + "version": "0.22.11", "description": "contain an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-cover/package.json b/packages/plugin-cover/package.json index b166a3f2..7099de55 100644 --- a/packages/plugin-cover/package.json +++ b/packages/plugin-cover/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-cover", - "version": "0.22.10", + "version": "0.22.11", "description": "cover an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-crop/package.json b/packages/plugin-crop/package.json index 2cff4b51..a3eaf7b7 100644 --- a/packages/plugin-crop/package.json +++ b/packages/plugin-crop/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-crop", - "version": "0.22.10", + "version": "0.22.11", "description": "crop an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-displace/package.json b/packages/plugin-displace/package.json index 2d94707b..a95aa58c 100644 --- a/packages/plugin-displace/package.json +++ b/packages/plugin-displace/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-displace", - "version": "0.22.10", + "version": "0.22.11", "description": "displace an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-dither/package.json b/packages/plugin-dither/package.json index fecc60ad..c2a62797 100644 --- a/packages/plugin-dither/package.json +++ b/packages/plugin-dither/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-dither", - "version": "0.22.10", + "version": "0.22.11", "description": "Dither an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-fisheye/package.json b/packages/plugin-fisheye/package.json index 6ea09aa1..89570240 100644 --- a/packages/plugin-fisheye/package.json +++ b/packages/plugin-fisheye/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-fisheye", - "version": "0.22.10", + "version": "0.22.11", "description": "Apply a fisheye effect to an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-flip/package.json b/packages/plugin-flip/package.json index 3ee4c16e..cec8191c 100644 --- a/packages/plugin-flip/package.json +++ b/packages/plugin-flip/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-flip", - "version": "0.22.10", + "version": "0.22.11", "description": "flip an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-gaussian/package.json b/packages/plugin-gaussian/package.json index 5acfd149..f9ee1075 100644 --- a/packages/plugin-gaussian/package.json +++ b/packages/plugin-gaussian/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-gaussian", - "version": "0.22.10", + "version": "0.22.11", "description": "gaussian blur an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-invert/package.json b/packages/plugin-invert/package.json index 43738609..e8aa9098 100644 --- a/packages/plugin-invert/package.json +++ b/packages/plugin-invert/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-invert", - "version": "0.22.10", + "version": "0.22.11", "description": "invert an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-mask/package.json b/packages/plugin-mask/package.json index 0d293fb2..29376327 100644 --- a/packages/plugin-mask/package.json +++ b/packages/plugin-mask/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-mask", - "version": "0.22.10", + "version": "0.22.11", "description": "mask an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-normalize/package.json b/packages/plugin-normalize/package.json index 76309b72..90bf3c07 100644 --- a/packages/plugin-normalize/package.json +++ b/packages/plugin-normalize/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-normalize", - "version": "0.22.10", + "version": "0.22.11", "description": "normalize an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-print/CHANGELOG.md b/packages/plugin-print/CHANGELOG.md index 47cf3974..cb1f398a 100644 --- a/packages/plugin-print/CHANGELOG.md +++ b/packages/plugin-print/CHANGELOG.md @@ -1,3 +1,21 @@ +# v0.22.11 (Fri Feb 23 2024) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, Rob Juurlink ([@kozmoz](https://github.com/kozmoz)), for all your work! + +#### 🚀 Enhancement + +- Add \n support for image.print #865 [#1265](https://github.com/jimp-dev/jimp/pull/1265) (juurr00@juurlink.org [@kozmoz](https://github.com/kozmoz) [@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 3 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- juurr00 (juurr00@juurlink.org) +- Rob Juurlink ([@kozmoz](https://github.com/kozmoz)) + +--- + # v0.22.9 (Wed Jul 26 2023) :tada: This release contains work from a new contributor! :tada: diff --git a/packages/plugin-print/package.json b/packages/plugin-print/package.json index d3d9f357..13d543a8 100644 --- a/packages/plugin-print/package.json +++ b/packages/plugin-print/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-print", - "version": "0.22.10", + "version": "0.22.11", "description": "print an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-resize/package.json b/packages/plugin-resize/package.json index d0a12beb..f26d8c2b 100644 --- a/packages/plugin-resize/package.json +++ b/packages/plugin-resize/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-resize", - "version": "0.22.10", + "version": "0.22.11", "description": "Resize an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-rotate/package.json b/packages/plugin-rotate/package.json index cf2cee47..df59f45b 100644 --- a/packages/plugin-rotate/package.json +++ b/packages/plugin-rotate/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-rotate", - "version": "0.22.10", + "version": "0.22.11", "description": "Rotate an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-scale/package.json b/packages/plugin-scale/package.json index 6e4be69d..229d14d3 100644 --- a/packages/plugin-scale/package.json +++ b/packages/plugin-scale/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-scale", - "version": "0.22.10", + "version": "0.22.11", "description": "scale an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-shadow/package.json b/packages/plugin-shadow/package.json index a8163aab..afbe00cd 100644 --- a/packages/plugin-shadow/package.json +++ b/packages/plugin-shadow/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-shadow", - "version": "0.22.10", + "version": "0.22.11", "description": "Creates a shadow on an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugin-threshold/package.json b/packages/plugin-threshold/package.json index fe3c9016..1b9d629c 100644 --- a/packages/plugin-threshold/package.json +++ b/packages/plugin-threshold/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugin-threshold", - "version": "0.22.10", + "version": "0.22.11", "description": "Lightens an image.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/plugins/package.json b/packages/plugins/package.json index efd7964b..65ca17ab 100644 --- a/packages/plugins/package.json +++ b/packages/plugins/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/plugins", - "version": "0.22.10", + "version": "0.22.11", "description": "Default Jimp plugin.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json index 974eca19..d80a8cf7 100644 --- a/packages/test-utils/package.json +++ b/packages/test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/test-utils", - "version": "0.22.10", + "version": "0.22.11", "description": "Test utils for jimp extensions.", "main": "dist/index.js", "repository": "jimp-dev/jimp", diff --git a/packages/type-bmp/package.json b/packages/type-bmp/package.json index 014b4e70..2b49008c 100644 --- a/packages/type-bmp/package.json +++ b/packages/type-bmp/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/bmp", - "version": "0.22.10", + "version": "0.22.11", "description": "Default Jimp bmp encoder/decoder.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/type-gif/package.json b/packages/type-gif/package.json index 7a40716c..5283997f 100644 --- a/packages/type-gif/package.json +++ b/packages/type-gif/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/gif", - "version": "0.22.10", + "version": "0.22.11", "description": "Default Jimp gif encoder/decoder.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/type-jpeg/package.json b/packages/type-jpeg/package.json index d37e53f0..bad2b69d 100644 --- a/packages/type-jpeg/package.json +++ b/packages/type-jpeg/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/jpeg", - "version": "0.22.10", + "version": "0.22.11", "description": "Default Jimp jpeg encoder/decoder.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/type-png/package.json b/packages/type-png/package.json index 4d86f999..e9476591 100644 --- a/packages/type-png/package.json +++ b/packages/type-png/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/png", - "version": "0.22.10", + "version": "0.22.11", "description": "Default Jimp png encoder/decoder.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/type-tiff/package.json b/packages/type-tiff/package.json index 7c6a5293..983e791d 100644 --- a/packages/type-tiff/package.json +++ b/packages/type-tiff/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/tiff", - "version": "0.22.10", + "version": "0.22.11", "description": "Default Jimp tiff encoder/decoder.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/types/package.json b/packages/types/package.json index da1165f2..7b0c3028 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/types", - "version": "0.22.10", + "version": "0.22.11", "description": "Default Jimp encoder/decoders.", "main": "dist/index.js", "module": "es/index.js", diff --git a/packages/utils/package.json b/packages/utils/package.json index 43fc3b8c..27fe09de 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@jimp/utils", - "version": "0.22.10", + "version": "0.22.11", "description": "Utils for jimp extensions.", "main": "dist/index.js", "module": "es/index.js",