Skip to content

Commit

Permalink
DitherPunk v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adrhill committed Aug 7, 2023
1 parent 86d0e24 commit 229c5e3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# DitherPunk
## Version `v3.1.0`
This release moves some functionality out of DitherPunk and into [ColorQuantization.jl][color-quantization-url] and [UnicodeGraphics.jl][unicode-graphics-url].
- ![Feature][badge-feature] `braille` is faster and supports new printing methods via UnicodeGraphics.jl,
e.g. `braille(img, method=:block)` ([#97][pr-97])
- ![Feature][badge-feature] Add support for `AbstractColorQuantizers` from ColorQuantization.jl for color palette dithering ([#98][pr-98])
- ![Bugfix][badge-bugfix] Fix bug in `DomainError` ([8fae2d](https://github.com/JuliaImages/DitherPunk.jl/commit/8fae2d79ee4ffc19a563a5db8f33e53b1909c009))
- ![Maintenance][badge-maintenance] Move clustering functionality into ColorQuantization.jl ([#98][pr-98])
- ![Maintenance][badge-maintenance] Add Aqua.jl quality assurance tests ([#99][pr-99])
- ![Maintenance][badge-maintenance] Update dependencies ([#98][pr-98])

## Version `v3.0.3`
- ![Enhancement][badge-enhancement] Replace UnicodePlots.jl dependency with custom `braille` implementation ([#91][pr-91])
- ![Enhancement][badge-enhancement] Revert default metric to `DE_2000` for higher image quality ([#92][pr-92])
Expand Down Expand Up @@ -104,9 +114,15 @@ This release introduces some breaking changes due to an API overhaul and adds ne
[pr-90]: https://github.com/JuliaImages/DitherPunk.jl/pull/90
[pr-91]: https://github.com/JuliaImages/DitherPunk.jl/pull/91
[pr-92]: https://github.com/JuliaImages/DitherPunk.jl/pull/92
[pr-97]: https://github.com/JuliaImages/DitherPunk.jl/pull/97
[pr-98]: https://github.com/JuliaImages/DitherPunk.jl/pull/98
[pr-99]: https://github.com/JuliaImages/DitherPunk.jl/pull/99

[commit-477c98e]: https://github.com/JuliaImages/DitherPunk.jl/commit/477c98ed37b81fed7f6292a364b08a6b516bfb07

[color-quantization-url]: https://github.com/JuliaImages/ColorQuantization.jl
[unicode-graphics-url]: https://github.com/JuliaGraphics/UnicodeGraphics.jl

[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
Expand Down
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 = "3.0.3"
version = "3.1.0"

[deps]
ColorQuantization = "652893fb-f6a0-4a00-a44a-7fb8fac69e01"
Expand Down

2 comments on commit 229c5e3

@adrhill
Copy link
Collaborator Author

@adrhill adrhill commented on 229c5e3 Aug 7, 2023

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

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 v3.1.0 -m "<description of version>" 229c5e3cb0397338428e41ac5d378bdbb89a8eda
git push origin v3.1.0

Please sign in to comment.