Skip to content
Open
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
18 changes: 18 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,24 @@ Fragment files in ``upcoming_changes/`` are assembled into this file by

.. towncrier release notes start

0.7.2 (2026-08-03)
==================

Bug Fixes
---------

- ``Plot2D.set_overlay_mask`` now works in TILE mode. The renderer sizes the mask
against ``base_width || image_width`` -- the tile overview grid -- but tile mode
sets ``image_width`` to the full native frame, so the shape check accepted only
the one shape the renderer silently discards (``maskCache = null``, no error) and
rejected the one that actually renders. On a 4096x4096 tiled plot neither a
1024x1024 nor a 4096x4096 mask could be drawn: the first raised ``ValueError``,
the second encoded 22.4 MB the renderer dropped. Both shapes are now accepted and
a full-resolution mask is reduced to the overview grid with a block ANY -- never
a subsample, so an object a few pixels across cannot vanish into a skipped
sample.


0.7.1 (2026-08-02)
==================

Expand Down
6 changes: 3 additions & 3 deletions docs/_root/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<meta charset="utf-8" />
<title>anyplotlib – redirecting…</title>
<!-- Redirect to the latest dev docs. -->
<meta http-equiv="refresh" content="0; url=v0.7.1/" />
<link rel="canonical" href="v0.7.1/" />
<meta http-equiv="refresh" content="0; url=v0.7.2/" />
<link rel="canonical" href="v0.7.2/" />
</head>
<body>
<p>
Redirecting to <a href="v0.7.1/">v0.7.1 documentation</a>…
Redirecting to <a href="v0.7.2/">v0.7.2 documentation</a>…
</p>
</body>
</html>
Expand Down
5 changes: 5 additions & 0 deletions docs/_root/switcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"version": "dev",
"url": "https://cssfrancis.github.io/anyplotlib/dev/"
},
{
"name": "v0.7.2 (stable)",
"version": "v0.7.2",
"url": "https://cssfrancis.github.io/anyplotlib/v0.7.2/"
},
{
"name": "v0.7.1 (stable)",
"version": "v0.7.1",
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
project = "anyplotlib"
copyright = "2026, anyplotlib contributors"
author = "anyplotlib contributors"
release = "0.7.1"
release = "0.7.2"

# When built in CI the workflow sets DOCS_VERSION to the tag name (e.g.
# "v0.1.0") or "dev". Fall back to "dev" for local builds.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exclude = [

[project]
name = "anyplotlib"
version = "0.7.1"
version = "0.7.2"
description = "A plotting library using python, javascript and anywidget for performant in browser plotting."
readme = "README.md"
license = { text = "MIT" }
Expand Down
10 changes: 0 additions & 10 deletions upcoming_changes/+overlay_mask_tile.bugfix.rst

This file was deleted.