Skip to content

Commit

Permalink
Docs: changelog and credit for #4168
Browse files Browse the repository at this point in the history
  • Loading branch information
lovell committed Jul 20, 2024
1 parent 67a4592 commit 2672de2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ Requires libvips v8.15.2
[#4157](https://github.com/lovell/sharp/pull/4157)
[@nkeynes](https://github.com/nkeynes)

* Expose optional `precision` parameter of `blur` operation.
[#4168](https://github.com/lovell/sharp/pull/4168)
[@marcosc90](https://github.com/marcosc90)

### v0.33.4 - 16th May 2024

* Remove experimental status from `pipelineColourspace`.
Expand Down
3 changes: 3 additions & 0 deletions docs/humans.txt
Original file line number Diff line number Diff line change
Expand Up @@ -302,3 +302,6 @@ GitHub: https://github.com/ton11797

Name: Nathan Keynes
GitHub: https://github.com/nkeynes

Name: Marcos Casagrande

This comment has been minimized.

Copy link
@marcosc90

marcosc90 Jul 20, 2024

Contributor

@lovell thanks for adding me, I'm already on line 264 though

This comment has been minimized.

Copy link
@lovell

lovell Jul 20, 2024

Author Owner

Your contributions are so good you get twice the credit 😄

GitHub: https://github.com/marcosc90
5 changes: 5 additions & 0 deletions test/types/sharp.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ sharp('input.jpg')

sharp('input.jpg').resize({ width: 300 }).blur(false).blur(true).toFile('output.jpg');

sharp().blur();
sharp().blur(1);
sharp().blur({ sigma: 1 });
sharp().blur({ sigma: 1, precision: 'approximate' });

sharp({
create: {
width: 300,
Expand Down

0 comments on commit 2672de2

Please sign in to comment.