From e6a99b1bfdd02c774c1a8dcf7a1fc39cb2355406 Mon Sep 17 00:00:00 2001 From: cproudlock Date: Sat, 11 Jul 2026 19:24:36 -0400 Subject: [PATCH] Release 0.6.0 Bump __version__ per ADR-007; roll Unreleased into the 0.6.0 changelog section. Covers the machines rename (ADR-011), the measuringtools plugin, per-plugin migrations (ADR-008), route gating (ADR-009), the get_reports hook (contract 0.6.0), and the sister-site adoption docs. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 2 ++ shopdb/__init__.py | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a724c9..1f24c78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ ADR-007 and ADR-002. ## [Unreleased] +## [0.6.0] - 2026-07-11 + ### Added - measuringtools plugin (ADR-005): gage-lab instruments as Asset extensions diff --git a/shopdb/__init__.py b/shopdb/__init__.py index ba8550b..fcec912 100644 --- a/shopdb/__init__.py +++ b/shopdb/__init__.py @@ -24,9 +24,9 @@ __contract_version__ = '0.6.0' # Product release version (see ADR-007). The product version and the # plugin-contract version above are distinct series with independent -# bump rules; they happen to coincide at 0.5.0. Not part of the -# shopdb.api contract surface, so it is not re-exported there. -__version__ = '0.5.0' +# bump rules. Not part of the shopdb.api contract surface, so it is +# not re-exported there. +__version__ = '0.6.0' def create_app(config_name: str = None) -> Flask: