Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.5.10"
".": "0.5.11"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.5.11](https://github.com/OpenDisplay/odl-renderer/compare/odl-renderer-v0.5.10...odl-renderer-v0.5.11) (2026-07-02)


### Bug Fixes

* add gray levels, fix half_white, harden hex, centralize named colors ([317d6bc](https://github.com/OpenDisplay/odl-renderer/commit/317d6bc63d61b4b402e71e6382c41134128aa63f))


### Tests

* add visual regression tests for grayscale ramp and gray text ([c31aaa3](https://github.com/OpenDisplay/odl-renderer/commit/c31aaa3f7caf164bbbfd78d08572fa0fb7ac330a))

## [0.5.10](https://github.com/OpenDisplay/odl-renderer/compare/odl-renderer-v0.5.9...odl-renderer-v0.5.10) (2026-06-25)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "odl-renderer"
version = "0.5.10"
version = "0.5.11"
description = "Pure image rendering from drawing instructions for e-paper displays"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion src/odl_renderer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from .types import DrawingContext, ElementType, TextSegment
from .warmup import warmup

__version__ = "0.5.10"
__version__ = "0.5.11"

__all__ = [
"warmup",
Expand Down
Loading