From b8e1b40a1178ed07f70e358e22c3ab08f967f75b Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Tue, 2 Sep 2025 10:02:39 -0600 Subject: [PATCH 1/2] Update to latest shacl2code Updates to the latest version of shacl2code. This version adds 2 primary features: * The python code now includes type annotations * The bindings now includes support for import and exporting to an rdflib graph --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1fcbcab..9dfae9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ Issues = "https://github.com/spdx/spdx-python-model/issues" requires = [ "hatchling", "hatch-build-scripts", - "shacl2code == 0.0.21", + "shacl2code == 0.0.22", ] build-backend = "hatchling.build" From 3bbc3e89824617f73bed4a896f9332363a376f38 Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Tue, 2 Sep 2025 10:08:29 -0600 Subject: [PATCH 2/2] Bump version for release --- src/spdx_python_model/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spdx_python_model/version.py b/src/spdx_python_model/version.py index a6c1414..cd88aee 100644 --- a/src/spdx_python_model/version.py +++ b/src/spdx_python_model/version.py @@ -2,4 +2,4 @@ # SPDX-License-Identifier: Apache-2.0 # -VERSION = "0.0.2" +VERSION = "0.0.3"