Skip to content

Commit 4be13dd

Browse files
authored
Merge pull request #64 from weanalyze/dev
minor version patch;
2 parents 9c145c6 + aecfed1 commit 4be13dd

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "workcell"
3-
version = "0.0.34"
3+
version = "0.0.35"
44
description = "Turn python function into microservice."
55
authors = ["jiandong <jiandong@weanalyze.co>"]
66
license = "Apache-2.0"

workcell/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Information about this library. This file will automatically changed (by poetry-bump-version)."""
22

3-
__version__ = "0.0.34"
3+
__version__ = "0.0.35"
44
__ui_version__ = "0.1.6"
55

66
from .core import Workcell

workcell/core/routes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ async def info() -> Any: # type: ignore
182182
)
183183
async def spec() -> Any: # type: ignore
184184
"""Returns informational metadata about this Workcell."""
185-
return {"spec":workcell.spec}
185+
return {"spec":workcell.spec, "info":workcell.description}
186186
return app
187187

188188

0 commit comments

Comments
 (0)