Skip to content

Commit bb39cea

Browse files
committed
Merge branch 'v1.0'
2 parents ca3f62f + 40342ae commit bb39cea

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# [v1.0.1](https://github.com/simvue-io/simvue-cli/releases/tag/v1.0.1) - 2025-03-31
2+
* Fixed typing bug for Generator.
3+
4+
# [v1.0.0](https://github.com/simvue-io/simvue-cli/releases/tag/v1.0.0) - 2025-03-31
5+
* Added list commands for viewing objects including runs, folders, tags etc.
6+
* Added user and tenant creation.
7+
* Added virtual environment initialisation from runs.
8+
* Added JSON dumping of objects.
9+
* Added command for checking server availability.
10+
* Added ability to attach metrics to an existing run.
11+
* Added creation of new runs from CLI.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "simvue-cli"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "Command Line Interface for interaction with a Simvue v3 server"
55
authors = [
66
{name = "Simvue Development Team", email = "[email protected]"}

src/simvue_cli/cli/display.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
from simvue.factory.proxy import typing
1111
from simvue.api.objects.base import SimvueObject
12+
1213
import tabulate
1314
import click
1415
import pydantic
@@ -141,7 +142,7 @@ def format_tags(
141142

142143
def create_objects_display(
143144
columns: list[str],
144-
objects: typing.Generator[tuple[str, SimvueObject]],
145+
objects: typing.Generator[tuple[str, SimvueObject], None, None],
145146
plain_text: bool,
146147
enumerate_: bool,
147148
format: str | None,

0 commit comments

Comments
 (0)