Skip to content

Commit 4574ada

Browse files
committed
Release 0.13.5
1 parent 6c5adb9 commit 4574ada

4 files changed

Lines changed: 20 additions & 7 deletions

File tree

codemeta.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"license": "https://spdx.org/licenses/Apache-2.0.html",
55
"codeRepository": "https://github.com/HumanBrainProject/fairgraph",
66
"contIntegration": "https://github.com/HumanBrainProject/fairgraph/actions",
7-
"dateModified": "2026-05-14",
8-
"downloadUrl": "https://files.pythonhosted.org/packages/d7/f6/460a038f133fd922eac20d544a14fe5c7b1a214ce9f02c9f53d2392e9291/fairgraph-0.13.4.tar.gz",
7+
"dateModified": "2026-05-26",
8+
"downloadUrl": null,
99
"issueTracker": "https://github.com/HumanBrainProject/fairgraph/issues",
1010
"name": "fairgraph",
11-
"version": "0.13.4",
12-
"identifier": "https://pypi.org/project/fairgraph/0.13.4/",
11+
"version": "0.13.5",
12+
"identifier": "https://pypi.org/project/fairgraph/0.13.5/",
1313
"description": "Python API for the EBRAINS Knowledge Graph",
1414
"applicationCategory": "neuroscience",
15-
"releaseNotes": "https://fairgraph.readthedocs.io/en/latest/release_notes.html#version-0-13-4",
15+
"releaseNotes": "https://fairgraph.readthedocs.io/en/latest/release_notes.html#version-0-13-5",
1616
"funding": "https://cordis.europa.eu/project/id/945539",
1717
"developmentStatus": "active",
1818
"referencePublication": null,

doc/release_notes.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ Release notes
33
=============
44

55

6+
Version 0.13.5
7+
==============
8+
9+
Bug fixes in this release:
10+
11+
- Fixed a bug where :meth:`~fairgraph.kgobject.KGObject.save` could silently
12+
no-op after re-fetching an object via :meth:`~fairgraph.kgobject.KGObject.from_id`,
13+
because :attr:`KGClient.cache` was not invalidated by writes
14+
(`#110 <https://github.com/HumanBrainProject/fairgraph/issues/110>`_).
15+
- Fixed the repository IRI used by the dataset version ``download()`` method
16+
(`#109 <https://github.com/HumanBrainProject/fairgraph/pull/109>`_).
17+
18+
619
Version 0.13.4
720
==============
821

fairgraph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from .collection import Collection
2929
from . import client, errors, openminds, utility
3030

31-
__version__ = "0.13.4"
31+
__version__ = "0.13.5"
3232

3333
utility.initialise_instances(
3434
[

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fairgraph"
3-
version = "0.13.4"
3+
version = "0.13.5"
44
description = "Python API for the EBRAINS Knowledge Graph"
55
readme = "README.md"
66
authors = [

0 commit comments

Comments
 (0)