From 68f48443fce37093800dfc893072163be7e800e8 Mon Sep 17 00:00:00 2001 From: tfuxu <73042332+tfuxu@users.noreply.github.com> Date: Sat, 9 Sep 2023 16:37:02 +0200 Subject: [PATCH] chore: update release information --- CHANGELOG.md | 2 ++ dither_go/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fd416e..3d21001 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2023-09-09 + ### Added - `MatrixUtils` helper class with `generate_matrices_list()` method - Docstrings for `ErrorDiffusers` and `OrderedDitherers` dataclass fields diff --git a/dither_go/__init__.py b/dither_go/__init__.py index 31e46f5..1411278 100644 --- a/dither_go/__init__.py +++ b/dither_go/__init__.py @@ -1,7 +1,7 @@ # Copyright 2023, tfuxu # SPDX-License-Identifier: GPL-3.0-or-later -__version__ = "0.2.1" +__version__ = "0.3.0" from .wrapper import * from .matrices import * diff --git a/pyproject.toml b/pyproject.toml index 2a7cd91..b76a2ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dither-go" -version = "0.2.1" +version = "0.3.0" authors = [{name = "tfuxu"}] description = "A fast and the most correct image dithering library" keywords = ["golang", "bindings", "dithering", "processing"]