Skip to content

Commit 617db39

Browse files
hotfix
1 parent ef05d2f commit 617db39

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Log of changes in the versions
44

5+
## v2.5.1
6+
7+
- hotfix Organization class
8+
59
## v2.5.0
610

711
- Zenodo Record returns a "dcat:Dataset" object when `publish()` is called.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors:
1111
given-names: "Lucas"
1212
orcid: "https://orcid.org/0000-0002-4116-0065"
1313
title: "h5rdmtoolbox - HDF5 Research Data Management Toolbox"
14-
version: 2.5.0
15-
doi: 10.5281/zenodo.17417808
14+
version: 2.5.1
15+
doi: 10.5281/zenodo.17496382
1616
date-released: 2025-10-31
1717
url: "https://github.com/matthiasprobst/h5rdmtoolbox"

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "https://spdx.org/licenses/MIT",
55
"codeRepository": "git+https://github.com/matthiasprobst/h5RDMtoolbox.git",
66
"name": "h5RDMtoolbox",
7-
"version": "2.5.0",
7+
"version": "2.5.1",
88
"description": "Supporting a FAIR Research Data lifecycle using Python and HDF5.",
99
"applicationCategory": "Engineering",
1010
"programmingLanguage": [

docs/colab/quickstart.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scrolled": true
88
},
99
"outputs": [],
10-
"source": "# !pip install h5rdmtoolbox==2.5.0"
10+
"source": "# !pip install h5rdmtoolbox==2.5.1"
1111
},
1212
{
1313
"cell_type": "code",

h5rdmtoolbox/repository/zenodo/foaf.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,10 @@ class Person(Agent):
184184
img: AnyUrl = Field(default=None, alias="img")
185185
workplaceHomepage: AnyUrl = Field(default=None, alias="workplace_homepage")
186186

187-
187+
@namespaces(foaf="http://xmlns.com/foaf/0.1/")
188+
@urirefs(
189+
Organization="foaf:Organization",
190+
)
188191
class Organization(Agent):
189192
"""Pydantic Modell für http://xmlns.com/foaf/0.1/Organization
190193
"""

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = h5rdmtoolbox
3-
version = 2.5.0
3+
version = 2.5.1
44
author = Matthias Probst
55
author_email = matth.probst@gmail.com
66
description = Supporting a FAIR Research Data lifecycle using Python and HDF5.

0 commit comments

Comments
 (0)