From f85e60e4e11b8fdc7b3c343510092d808886950b Mon Sep 17 00:00:00 2001 From: "E. McConville" Date: Sat, 21 Nov 2020 10:49:00 -0600 Subject: [PATCH] Updated docs for release of 0.6.4 --- README.rst | 3 +++ docs/changes.rst | 4 +++- docs/whatsnew/0.6.rst | 8 ++++++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index b4c713a3..51d594e9 100644 --- a/README.rst +++ b/README.rst @@ -67,6 +67,9 @@ List archive http://librelist.com/browser/wand/ http://dir.gmane.org/gmane.comp.python.wand +Discord + https://discord.gg/BWQ25wB + Stack Overflow tag (Q&A) http://stackoverflow.com/questions/tagged/wand diff --git a/docs/changes.rst b/docs/changes.rst index 28af8c7d..70a6237e 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -12,7 +12,7 @@ Wand Changelog Version 0.6.4 ------------- -Unreleased. +Released on November 21st, 2020. - Fixed `MagickFloatType` mapping for **s390x** architecture. [:issue:`504` & :issue:`505`] - Fixed image order when calling :meth:`wand.sequence.Sequence.__setitem__()` method. [:issue:`506`] @@ -41,6 +41,8 @@ Unreleased. - Added ``'rigidaffine'`` operator to :meth:`Image.distort() ` method. Requires ImageMagick-7.0.10 or above. - Added :class:`PAPERSIZE_MAP ` dict as a convenience lookup table. - Added support for setting :attr:`Image.page ` attribute with papersizes defined in :class:`~wand.image.PAPERSIZE_MAP`. + - [DOC] Created :doc:`Threshold <./guide/threshold>` guide. + - [DOC] Created :doc:`Quantize <./guide/quantize>` guide. .. _changelog-0.6.3: diff --git a/docs/whatsnew/0.6.rst b/docs/whatsnew/0.6.rst index 3c09b954..7bf271dc 100644 --- a/docs/whatsnew/0.6.rst +++ b/docs/whatsnew/0.6.rst @@ -54,22 +54,26 @@ of all the new methods. - :meth:`Image.auto_threshold() ` method. - :meth:`Image.canny() ` method. - - :meth:`Image.clahe() ` method. - Also known as "Contrast Limited Adaptive Histogram Equalization". + - :meth:`Image.clahe() ` method. Also known as "Contrast Limited Adaptive Histogram Equalization". + - :meth:`Image.color_threshold() ` method. - :meth:`Image.complex() ` method. - :meth:`Image.connected_components() ` method. + - :meth:`Image.convex_hull() ` method. - :meth:`Image.hough_lines() ` method. + - :meth:`Image.kmeans() ` method. - :meth:`Image.kuwahara() ` method. - :meth:`Image.level_colors() ` method. - :meth:`Image.levelize() ` method. - :meth:`Image.levelize_colors() ` method. - :meth:`Image.local_contrast() ` method. - :meth:`Image.mean_shift() ` method. + - :meth:`Image.minimum_bounding_box() ` method. - :meth:`Image.polynomial() ` method. - :meth:`Image.range_threshold() ` method. - :meth:`Image.read_mask() ` method. - :meth:`Image.rotational_blur() ` method. - :meth:`Image.wavelet_denoise() ` method. + - :meth:`Image.white_balance() ` method. - :meth:`Image.write_mask() ` method.