From dfa0d44589bdf5ad20c9d37b84b846d55c9fe43c Mon Sep 17 00:00:00 2001 From: stroblme Date: Fri, 28 Aug 2026 11:01:25 +0200 Subject: [PATCH] Back to development: 0.1.4+dev MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A tag is the only thing that is a version. Between two of them the tree is a build nobody released, and until now it went on claiming to *be* the release it came after — which is how 0.1.4 came to name both the build before the per-node digest and the build after, with the mismatch messages unable to tell them apart. `+dev` is a local version: it says "0.1.4, plus changes", it does not have to guess what the next release will be numbered, and PyPI refuses one, so a dev build cannot be published by accident. `scripts/release.sh` in the workspace root writes it after each tag; this is that commit, by hand, for the release that predates it. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01A9Hdrmf2cwNABCnE5x9UJa --- backend/pyproject.toml | 2 +- uv.lock | 4 ++-- worker/pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 3ea0651..a5de93d 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fluksio" -version = "0.1.4" +version = "0.1.4+dev" description = "Node-based automation engine: flows, dashboards, batch runs" readme = "README.md" license = "AGPL-3.0-or-later" diff --git a/uv.lock b/uv.lock index d22124d..8d79503 100644 --- a/uv.lock +++ b/uv.lock @@ -869,7 +869,7 @@ wheels = [ [[package]] name = "fluksio" -version = "0.1.4" +version = "0.1.4+dev" source = { editable = "backend" } dependencies = [ { name = "aiomqtt" }, @@ -955,7 +955,7 @@ dev = [ [[package]] name = "fluksio-worker" -version = "0.1.4" +version = "0.1.4+dev" source = { editable = "worker" } dependencies = [ { name = "websockets" }, diff --git a/worker/pyproject.toml b/worker/pyproject.toml index e5f2979..2f3c0de 100644 --- a/worker/pyproject.toml +++ b/worker/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fluksio-worker" -version = "0.1.4" +version = "0.1.4+dev" description = "Runs Fluksio nodes on a machine the engine cannot reach" readme = "README.md" license = "AGPL-3.0-or-later"