Skip to content

Commit

Permalink
DitherPunk v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adrhill committed Feb 7, 2022
1 parent 9597d45 commit c557f0f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# DitherPunk
## Version `v2.3.0`
- ![Feature][badge-feature] Color space for error diffusion can now be selected. Defaults to `XYZ`, a change from previous `RGB` color space. Changes outputs and speeds up color error diffusion. ([#63][pr-63])
- ![Enhancement][badge-enhancement] Speed up color ordered dithering. ([#62][pr-62])
- ![Documentation][badge-docs] Better docstrings for error diffusion algorithms. ([#63][pr-63])
- ![Documentation][badge-docs] Added ASCII dithering example to docs. ([#64][pr-64])

## Version `v2.2.0`
- ![Feature][badge-feature] Ordered dithering algorithms now support custom color palettes. ([#53][pr-53])
- ![Enhancement][badge-enhancement] Color palette generation with Clustering.jl has been made accessible as `DitherPunk.get_colorscheme`. ([#58][pr-58])
- ![Bugfix][badge-bugfix] Fixed docstring warnings. ([#56][pr-56])

- ![Documentation][badge-docs] Added three advanced examples to docs. ([#58][pr-58])

## Version `v2.1.0`
- ![Feature][badge-feature] Color dithering methods now return IndirectArrays. ([#47][pr-47])
Expand Down Expand Up @@ -31,6 +37,7 @@ This release introduces some breaking changes due to an API overhaul and adds ne
![Security][badge-security]
![Experimental][badge-experimental]
![Maintenance][badge-maintenance]
![Documentation][badge-docs]
-->

[pr-45]: https://github.com/JuliaImages/DitherPunk.jl/pull/45
Expand All @@ -39,6 +46,9 @@ This release introduces some breaking changes due to an API overhaul and adds ne
[pr-53]: https://github.com/JuliaImages/DitherPunk.jl/pull/53
[pr-56]: https://github.com/JuliaImages/DitherPunk.jl/pull/56
[pr-58]: https://github.com/JuliaImages/DitherPunk.jl/pull/58
[pr-62]: https://github.com/JuliaImages/DitherPunk.jl/pull/62
[pr-63]: https://github.com/JuliaImages/DitherPunk.jl/pull/63
[pr-64]: https://github.com/JuliaImages/DitherPunk.jl/pull/64

[badge-breaking]: https://img.shields.io/badge/BREAKING-red.svg
[badge-deprecation]: https://img.shields.io/badge/deprecation-orange.svg
Expand All @@ -48,3 +58,4 @@ This release introduces some breaking changes due to an API overhaul and adds ne
[badge-security]: https://img.shields.io/badge/security-black.svg
[badge-experimental]: https://img.shields.io/badge/experimental-lightgrey.svg
[badge-maintenance]: https://img.shields.io/badge/maintenance-gray.svg
[badge-docs]: https://img.shields.io/badge/docs-orange.svg
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DitherPunk"
uuid = "b8f752a5-abd5-43b6-a55b-e75efda20de0"
authors = ["Adrian Hill"]
version = "2.2.0"
version = "2.3.0"

[deps]
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
Expand Down

2 comments on commit c557f0f

@adrhill
Copy link
Collaborator Author

@adrhill adrhill commented on c557f0f Feb 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/54131

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v2.3.0 -m "<description of version>" c557f0f59c5527f5f7171955ce5ce3d53eca3cab
git push origin v2.3.0

Please sign in to comment.