Back to development: 0.1.4+dev

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) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01A9Hdrmf2cwNABCnE5x9UJa
This commit is contained in:
2026-08-28 11:01:25 +02:00
co-authored by Claude Opus 5
parent 8f1e685526
commit dfa0d44589
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "fluksio" name = "fluksio"
version = "0.1.4" version = "0.1.4+dev"
description = "Node-based automation engine: flows, dashboards, batch runs" description = "Node-based automation engine: flows, dashboards, batch runs"
readme = "README.md" readme = "README.md"
license = "AGPL-3.0-or-later" license = "AGPL-3.0-or-later"
Generated
+2 -2
View File
@@ -869,7 +869,7 @@ wheels = [
[[package]] [[package]]
name = "fluksio" name = "fluksio"
version = "0.1.4" version = "0.1.4+dev"
source = { editable = "backend" } source = { editable = "backend" }
dependencies = [ dependencies = [
{ name = "aiomqtt" }, { name = "aiomqtt" },
@@ -955,7 +955,7 @@ dev = [
[[package]] [[package]]
name = "fluksio-worker" name = "fluksio-worker"
version = "0.1.4" version = "0.1.4+dev"
source = { editable = "worker" } source = { editable = "worker" }
dependencies = [ dependencies = [
{ name = "websockets" }, { name = "websockets" },
+1 -1
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "fluksio-worker" name = "fluksio-worker"
version = "0.1.4" version = "0.1.4+dev"
description = "Runs Fluksio nodes on a machine the engine cannot reach" description = "Runs Fluksio nodes on a machine the engine cannot reach"
readme = "README.md" readme = "README.md"
license = "AGPL-3.0-or-later" license = "AGPL-3.0-or-later"