Skip to content
Draft
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
6 changes: 3 additions & 3 deletions cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "flowmesh-cli"
version = "0.1.3"
version = "0.1.4"
description = "FlowMesh command line interface"
readme = "README.md"
requires-python = ">=3.12"
Expand All @@ -15,11 +15,11 @@ dependencies = [
"pyyaml>=6.0.2",
"rich>=14.2.0",
"websockets>=15.0",
"flowmesh-sdk==0.1.3",
"flowmesh-sdk==0.1.4",
]

[project.optional-dependencies]
stack = ["flowmesh-cli-stack==0.1.3"]
stack = ["flowmesh-cli-stack==0.1.4"]

[project.scripts]
flowmesh = "flowmesh_cli.cli:main"
Expand Down
2 changes: 1 addition & 1 deletion cli/src/flowmesh_cli/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from importlib.metadata import PackageNotFoundError, version

_PACKAGE_NAME = "flowmesh-cli"
_STATIC_VERSION = "0.1.3"
_STATIC_VERSION = "0.1.4"


def _resolve_version() -> str:
Expand Down
6 changes: 3 additions & 3 deletions cli/stack/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"

[project]
name = "flowmesh-cli-stack"
version = "0.1.3"
version = "0.1.4"
description = "FlowMesh CLI stack commands"
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
license-files = ["LICENSE"]
dependencies = [
"flowmesh-cli==0.1.3",
"flowmesh-sdk-stack==0.1.3",
"flowmesh-cli==0.1.4",
"flowmesh-sdk-stack==0.1.4",
"docker>=7.1.0",
"packaging>=24",
"pyyaml>=6.0.2",
Expand Down
2 changes: 1 addition & 1 deletion hook/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "flowmesh-hook"
version = "0.1.3"
version = "0.1.4"
description = "FlowMesh-specific plugin extension surface (bindings, resource enums, supplier resolver, usage row)"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "flowmesh"
version = "0.1.3"
version = "0.1.4"
description = "FlowMesh: A Multi-tenant Service Fabric for LLM Agentic Workflows"
readme = "README.md"
requires-python = ">=3.12"
Expand All @@ -10,13 +10,13 @@ dependencies = []

[project.optional-dependencies]
# Public PyPI install surface.
sdk = ["flowmesh-sdk==0.1.3"]
cli = ["flowmesh-cli[stack]==0.1.3"]
hook = ["flowmesh-hook==0.1.3"]
sdk = ["flowmesh-sdk==0.1.4"]
cli = ["flowmesh-cli[stack]==0.1.4"]
hook = ["flowmesh-hook==0.1.4"]
all = [
"flowmesh-cli[stack]==0.1.3",
"flowmesh-hook==0.1.3",
"flowmesh-sdk==0.1.3",
"flowmesh-cli[stack]==0.1.4",
"flowmesh-hook==0.1.4",
"flowmesh-sdk==0.1.4",
]

[dependency-groups]
Expand Down
2 changes: 1 addition & 1 deletion sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "flowmesh-sdk"
version = "0.1.3"
version = "0.1.4"
description = "FlowMesh Python SDK"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/flowmesh/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from importlib.metadata import PackageNotFoundError, version

_PACKAGE_NAME = "flowmesh-sdk"
_STATIC_VERSION = "0.1.3"
_STATIC_VERSION = "0.1.4"


def _resolve_version() -> str:
Expand Down
4 changes: 2 additions & 2 deletions sdk/stack/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"

[project]
name = "flowmesh-sdk-stack"
version = "0.1.3"
version = "0.1.4"
description = "FlowMesh SDK stack client"
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
license-files = ["LICENSE"]
dependencies = [
"flowmesh-sdk==0.1.3",
"flowmesh-sdk==0.1.4",
"httpx>=0.27.0",
"pyyaml>=6.0.0",
"docker>=7.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/shared/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Shared runtime version for FlowMesh server and worker source trees."""

FLOWMESH_RELEASE_VERSION = "0.1.3"
FLOWMESH_RELEASE_VERSION = "0.1.4"
18 changes: 9 additions & 9 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.