Skip to content

Commit 97e2995

Browse files
authored
chore: bump version to v0.1.5-rc.1 (#87)
1 parent 0436572 commit 97e2995

10 files changed

Lines changed: 29 additions & 29 deletions

File tree

cli/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "flowmesh-cli"
7-
version = "0.1.4"
7+
version = "0.1.5rc1"
88
description = "FlowMesh command line interface"
99
readme = "README.md"
1010
requires-python = ">=3.12"
@@ -15,11 +15,11 @@ dependencies = [
1515
"pyyaml>=6.0.2",
1616
"rich>=14.2.0",
1717
"websockets>=15.0",
18-
"flowmesh-sdk==0.1.4",
18+
"flowmesh-sdk==0.1.5rc1",
1919
]
2020

2121
[project.optional-dependencies]
22-
stack = ["flowmesh-cli-stack==0.1.4"]
22+
stack = ["flowmesh-cli-stack==0.1.5rc1"]
2323

2424
[project.scripts]
2525
flowmesh = "flowmesh_cli.cli:main"

cli/src/flowmesh_cli/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from importlib.metadata import PackageNotFoundError, version
44

55
_PACKAGE_NAME = "flowmesh-cli"
6-
_STATIC_VERSION = "0.1.4"
6+
_STATIC_VERSION = "0.1.5rc1"
77

88

99
def _resolve_version() -> str:

cli/stack/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "flowmesh-cli-stack"
7-
version = "0.1.4"
7+
version = "0.1.5rc1"
88
description = "FlowMesh CLI stack commands"
99
readme = "README.md"
1010
requires-python = ">=3.12"
1111
license = "Apache-2.0"
1212
license-files = ["LICENSE"]
1313
dependencies = [
14-
"flowmesh-cli==0.1.4",
15-
"flowmesh-sdk-stack==0.1.4",
14+
"flowmesh-cli==0.1.5rc1",
15+
"flowmesh-sdk-stack==0.1.5rc1",
1616
"docker>=7.1.0",
1717
"packaging>=24",
1818
"pyyaml>=6.0.2",

hook/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "flowmesh-hook"
7-
version = "0.1.4"
7+
version = "0.1.5rc1"
88
description = "FlowMesh-specific plugin extension surface (bindings, resource enums, supplier resolver, usage row)"
99
readme = "README.md"
1010
requires-python = ">=3.12"

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "flowmesh"
3-
version = "0.1.4"
3+
version = "0.1.5rc1"
44
description = "FlowMesh: A Multi-tenant Service Fabric for LLM Agentic Workflows"
55
readme = "README.md"
66
requires-python = ">=3.12"
@@ -10,13 +10,13 @@ dependencies = []
1010

1111
[project.optional-dependencies]
1212
# Public PyPI install surface.
13-
sdk = ["flowmesh-sdk==0.1.4"]
14-
cli = ["flowmesh-cli[stack]==0.1.4"]
15-
hook = ["flowmesh-hook==0.1.4"]
13+
sdk = ["flowmesh-sdk==0.1.5rc1"]
14+
cli = ["flowmesh-cli[stack]==0.1.5rc1"]
15+
hook = ["flowmesh-hook==0.1.5rc1"]
1616
all = [
17-
"flowmesh-cli[stack]==0.1.4",
18-
"flowmesh-hook==0.1.4",
19-
"flowmesh-sdk==0.1.4",
17+
"flowmesh-cli[stack]==0.1.5rc1",
18+
"flowmesh-hook==0.1.5rc1",
19+
"flowmesh-sdk==0.1.5rc1",
2020
]
2121

2222
[dependency-groups]

sdk/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "flowmesh-sdk"
7-
version = "0.1.4"
7+
version = "0.1.5rc1"
88
description = "FlowMesh Python SDK"
99
readme = "README.md"
1010
requires-python = ">=3.12"

sdk/src/flowmesh/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from importlib.metadata import PackageNotFoundError, version
44

55
_PACKAGE_NAME = "flowmesh-sdk"
6-
_STATIC_VERSION = "0.1.4"
6+
_STATIC_VERSION = "0.1.5rc1"
77

88

99
def _resolve_version() -> str:

sdk/stack/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "flowmesh-sdk-stack"
7-
version = "0.1.4"
7+
version = "0.1.5rc1"
88
description = "FlowMesh SDK stack client"
99
readme = "README.md"
1010
requires-python = ">=3.12"
1111
license = "Apache-2.0"
1212
license-files = ["LICENSE"]
1313
dependencies = [
14-
"flowmesh-sdk==0.1.4",
14+
"flowmesh-sdk==0.1.5rc1",
1515
"httpx>=0.27.0",
1616
"pyyaml>=6.0.0",
1717
"docker>=7.1.0",

src/shared/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Shared runtime version for FlowMesh server and worker source trees."""
22

3-
FLOWMESH_RELEASE_VERSION = "0.1.4"
3+
FLOWMESH_RELEASE_VERSION = "0.1.5rc1"

uv.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)