Skip to content
Merged
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
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## v0.8.0 (2025-08-29)

### Feat

- add OxygenRelation Enum
- add GCMethod enum
- add lastUpdate to source and logo to identifier
- add KindOfUtilization enum

### Fix

- change concentration of tolerance test to float value, was string
- changed enzyme url to identifier list

### Refactor

- **restructure**: restructure
- **restructure**: restructure data multicallcomplex and oxygenrelation into other classes
- **restructure**: restructure information of origin, morphology and growthcondtion into new classes

## v0.7.0 (2025-08-14)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![release: 0.7.0](https://img.shields.io/badge/rel-0.7.0-blue.svg?style=flat-square)](https://github.com/LeibnizDSMZ/microbial-data-standard)
[![release: 0.8.0](https://img.shields.io/badge/rel-0.8.0-blue.svg?style=flat-square)](https://github.com/LeibnizDSMZ/microbial-data-standard)
[![MIT LICENSE](https://img.shields.io/badge/License-MIT-brightgreen.svg?style=flat-square)](https://choosealicense.com/licenses/mit/)
[![Documentation Status](https://img.shields.io/badge/docs-GitHub-blue.svg?style=flat-square)](https://LeibnizDSMZ.github.io/microbial-data-standard/)

Expand Down
4 changes: 2 additions & 2 deletions bin/python/build_docs_schema_excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import json
import pandas as pd

from microbial_strain_data_model.microbe import Microbe
from microbial_strain_data_model.strain import Strain

# ruff: noqa: C901

Expand Down Expand Up @@ -39,7 +39,7 @@ def write_documentation(name, title, type, format, description, id, is_req):


def parse_schema() -> None:
mi = Microbe.model_json_schema()
mi = Strain.model_json_schema()
main_schema_path = Path("schema/microbe_schema.json")
with main_schema_path.open("w") as f_out:
f_out.write(json.dumps(mi, indent=2))
Expand Down
Loading
Loading