Skip to content

Commit

Permalink
DitherPunk v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adrhill committed Nov 26, 2021
1 parent e13c7aa commit 0cb8792
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 23 deletions.
49 changes: 27 additions & 22 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,22 @@
# DitherPunk
## Version `v2.0.0`
## Version `v2.1.0`
- ![Feature][badge-feature] Color dithering methods now return IndirectArrays. ([#47][pr-47])
- ![Enhancement][badge-enhancement] Performance enhancements. Most noticeable for color methods. ([#47][pr-47])
- Dropped dependency on TiledIteration. ([#47][pr-47])
- `invert_map` is now a keyword argument of ordered dithering constructors. ([#50][pr-50])

## Version `v2.0.0`
This release introduces some breaking changes due to an API overhaul and adds new functionality through conditional dependencies:
- ![BREAKING][badge-breaking] Dithering color images without specifying a color palette will now automatically apply per-channel binary dithering. ([#45][github-45])
- ![BREAKING][badge-breaking] Because of the previously mentioned change, `SeparateSpace` and its type `AbstractFixedColorDither` are not needed anymore and were removed. ([#45][github-45])
- ![Enhancement][badge-enhancement] Enhanced error message when trying to use color palettes on methods that don't support them (Julia >=1.5). ([#45][github-45])
- ![Feature][badge-feature] Support for ColorSchemes.jl. ([#45][github-45])
- ![Feature][badge-feature] Support for Clustering.jl: automatically generate color palettes via K-means clustering. ([#45][github-45])
- ![Feature][badge-feature] Support for UnicodePlots.jl: print binary images using Unicode Braille patterns with `braille` . ([#45][github-45])
- ![Bugfix][badge-bugfix] Error diffusion kwargs are now accessible. ([#45][github-45])


[github-45]: https://github.com/JuliaImages/DitherPunk.jl/pull/45

[badge-breaking]: https://img.shields.io/badge/BREAKING-red.svg
[badge-deprecation]: https://img.shields.io/badge/deprecation-orange.svg
[badge-feature]: https://img.shields.io/badge/feature-green.svg
[badge-enhancement]: https://img.shields.io/badge/enhancement-blue.svg
[badge-bugfix]: https://img.shields.io/badge/bugfix-purple.svg
[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
- ![BREAKING][badge-breaking] Dithering color images without specifying a color palette will now automatically apply per-channel binary dithering. ([#45][pr-45])
- ![BREAKING][badge-breaking] Because of the previously mentioned change, `SeparateSpace` and its type `AbstractFixedColorDither` are not needed anymore and were removed. ([#45][pr-45])
- ![Enhancement][badge-enhancement] Enhanced error message when trying to use color palettes on methods that don't support them (Julia >=1.5). ([#45][pr-45])
- ![Feature][badge-feature] Support for ColorSchemes.jl. ([#45][pr-45])
- ![Feature][badge-feature] Support for Clustering.jl: automatically generate color palettes via K-means clustering. ([#45][pr-45])
- ![Feature][badge-feature] Support for UnicodePlots.jl: print binary images using Unicode Braille patterns with `braille` . ([#45][pr-45])
- ![Bugfix][badge-bugfix] Error diffusion kwargs are now accessible. ([#45][pr-45])

<!--
# Badges
![BREAKING][badge-breaking]
![Deprecation][badge-deprecation]
![Feature][badge-feature]
Expand All @@ -33,4 +25,17 @@ This release introduces some breaking changes due to an API overhaul and adds ne
![Security][badge-security]
![Experimental][badge-experimental]
![Maintenance][badge-maintenance]
-->
-->

[pr-45]: https://github.com/JuliaImages/DitherPunk.jl/pull/45
[pr-47]: https://github.com/JuliaImages/DitherPunk.jl/pull/47
[pr-50]: https://github.com/JuliaImages/DitherPunk.jl/pull/50

[badge-breaking]: https://img.shields.io/badge/BREAKING-red.svg
[badge-deprecation]: https://img.shields.io/badge/deprecation-orange.svg
[badge-feature]: https://img.shields.io/badge/feature-green.svg
[badge-enhancement]: https://img.shields.io/badge/enhancement-blue.svg
[badge-bugfix]: https://img.shields.io/badge/bugfix-purple.svg
[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
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.0.1"
version = "2.1.0"

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

2 comments on commit 0cb8792

@adrhill
Copy link
Collaborator Author

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/49408

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.1.0 -m "<description of version>" 0cb87926b20574bf235147cb3c94e92fce9911e8
git push origin v2.1.0

Please sign in to comment.