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

.. towncrier release notes start

0.7.3 (2026-08-13)
==================

New Features
------------

- ``Plot2D.add_circle_widget`` gains ``lock_center``: the centre is pinned and
only the radius is draggable. A grab on the ring body is refused at hit-test
time and falls through to the plot's own pan, so the hover cursor never
promises a move and the centre cannot drift. Use it when the centre is fixed by
the data — a ring on a power spectrum is centred on the DC term, and one nudged
off-centre silently corrupts every radius measured from it.


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

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.2/" />
<link rel="canonical" href="v0.7.2/" />
<meta http-equiv="refresh" content="0; url=v0.7.3/" />
<link rel="canonical" href="v0.7.3/" />
</head>
<body>
<p>
Redirecting to <a href="v0.7.2/">v0.7.2 documentation</a>…
Redirecting to <a href="v0.7.3/">v0.7.3 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.3 (stable)",
"version": "v0.7.3",
"url": "https://cssfrancis.github.io/anyplotlib/v0.7.3/"
},
{
"name": "v0.7.2 (stable)",
"version": "v0.7.2",
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.2"
release = "0.7.3"

# 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.2"
version = "0.7.3"
description = "A plotting library using python, javascript and anywidget for performant in browser plotting."
readme = "README.md"
license = { text = "MIT" }
Expand Down
6 changes: 0 additions & 6 deletions upcoming_changes/+circle_lock_center.new_feature.rst

This file was deleted.

Loading