From 55e787a2ff43e6557d9020f22a20356764a8c389 Mon Sep 17 00:00:00 2001 From: DLANSAMA <258674612+DLANSAMA@users.noreply.github.com> Date: Fri, 28 Aug 2026 10:18:56 -0400 Subject: [PATCH] chore: bump main to 0.6.0.dev0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Step 6 of docs/releasing.md, after v0.5.1 was tagged and published. Without it main keeps claiming to be the released version: anyone running from a source checkout reports `plate 0.5.1` while executing unreleased code, and the bug-report template asks for exactly that string. This step was missed after 0.3.0, which is why main spent a day identifying as 0.3.0 while seven commits ahead of the tag. CHANGELOG is untouched — `## [Unreleased]` is already an empty heading and the compare link already points at v0.5.1...HEAD. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1955e1a..c4bf334 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "platecli" # Unreleased work carries a .devN suffix so a source build is never mistaken # for the released wheel of the same number. Drop the suffix when tagging. -version = "0.5.1" +version = "0.6.0.dev0" description = "platecli — local CLI for Bambu Lab printers (not affiliated with Bambu Lab)" readme = "README.md" requires-python = ">=3.10"