From 807310c981028d6b5de8c36a3c0931e545091027 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 17:01:41 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 2 +- packages/javascript/package.json | 2 +- packages/python/CHANGELOG.md | 7 +++++++ packages/python/pyproject.toml | 2 +- packages/python/src/epaper_dithering/__init__.py | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 878bb38..7fc3cdf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "packages/python": "5.0.6", + "packages/python": "5.0.7", "packages/rust/core": "4.0.0" } diff --git a/packages/javascript/package.json b/packages/javascript/package.json index e6b12e4..82a394d 100644 --- a/packages/javascript/package.json +++ b/packages/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@opendisplay/epaper-dithering", - "version": "5.0.6", + "version": "5.0.7", "description": "Dithering algorithms for e-paper/e-ink displays (JavaScript/TypeScript)", "type": "module", "main": "./dist/index.cjs", diff --git a/packages/python/CHANGELOG.md b/packages/python/CHANGELOG.md index 122961a..b72bdc9 100644 --- a/packages/python/CHANGELOG.md +++ b/packages/python/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [5.0.7](https://github.com/OpenDisplay/epaper-dithering/compare/epaper-dithering-v5.0.6...epaper-dithering-v5.0.7) (2026-06-29) + + +### Bug Fixes + +* re-release Python sdist with corrected workspace manifest ([#40](https://github.com/OpenDisplay/epaper-dithering/issues/40)) ([371b029](https://github.com/OpenDisplay/epaper-dithering/commit/371b029ea336e02e37ec16e083e2b4358b7eaa93)) + ## [5.0.6](https://github.com/OpenDisplay/epaper-dithering/compare/epaper-dithering-v5.0.5...epaper-dithering-v5.0.6) (2026-05-21) diff --git a/packages/python/pyproject.toml b/packages/python/pyproject.toml index fa2c61f..3e5c85d 100644 --- a/packages/python/pyproject.toml +++ b/packages/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "epaper-dithering" -version = "5.0.6" +version = "5.0.7" description = "Dithering algorithms for e-paper/e-ink displays" readme = "README.md" license = "MIT" diff --git a/packages/python/src/epaper_dithering/__init__.py b/packages/python/src/epaper_dithering/__init__.py index b1a09e8..b92687b 100644 --- a/packages/python/src/epaper_dithering/__init__.py +++ b/packages/python/src/epaper_dithering/__init__.py @@ -19,7 +19,7 @@ ColorScheme, ) -__version__ = "5.0.6" +__version__ = "5.0.7" __all__ = [ "dither_image",