Skip to content

Commit 05923af

Browse files
committed
bump minor version
1 parent 2d329a1 commit 05923af

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

bioimageio/spec/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "0.5.4.4"
2+
"version": "0.5.5.0"
33
}

bioimageio/spec/model/v0_5.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2607,11 +2607,11 @@ class ModelDescr(GenericModelDescrBase):
26072607
These fields are typically stored in a YAML file which we call a model resource description file (model RDF).
26082608
"""
26092609

2610-
implemented_format_version: ClassVar[Literal["0.5.4"]] = "0.5.4"
2610+
implemented_format_version: ClassVar[Literal["0.5.5"]] = "0.5.5"
26112611
if TYPE_CHECKING:
2612-
format_version: Literal["0.5.4"] = "0.5.4"
2612+
format_version: Literal["0.5.5"] = "0.5.5"
26132613
else:
2614-
format_version: Literal["0.5.4"]
2614+
format_version: Literal["0.5.5"]
26152615
"""Version of the bioimage.io model description specification used.
26162616
When creating a new model always use the latest micro/patch version described here.
26172617
The `format_version` is important for any consumer software to understand how to parse the fields.
@@ -3357,7 +3357,7 @@ def conv_authors(auths: Optional[Sequence[_Author_v0_4]]):
33573357
covers=src.covers,
33583358
description=src.description,
33593359
documentation=src.documentation,
3360-
format_version="0.5.4",
3360+
format_version="0.5.5",
33613361
git_repo=src.git_repo, # pyright: ignore[reportArgumentType]
33623362
icon=src.icon,
33633363
id=None if src.id is None else ModelId(src.id),

tests/test_summary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def test_save_markdown(tmp_path: Path):
66

77
summary = ValidationSummary(
88
type="model",
9-
format_version="0.5.4",
9+
format_version="0.5.5",
1010
name="test",
1111
source_name="source",
1212
status="passed",

0 commit comments

Comments
 (0)