From 84b5c16f779d2d73394ed57642b1c029e7321041 Mon Sep 17 00:00:00 2001 From: Vincent Emonet Date: Fri, 24 May 2024 07:44:32 +0200 Subject: [PATCH] bump version --- src/rdflib_endpoint/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rdflib_endpoint/__init__.py b/src/rdflib_endpoint/__init__.py index c9f77a2..a9a6077 100644 --- a/src/rdflib_endpoint/__init__.py +++ b/src/rdflib_endpoint/__init__.py @@ -1,6 +1,6 @@ """A package to deploy SPARQL endpoint to serve local RDF files, machine learning models, or any other logic implemented in Python, using RDFLib and FastAPI.""" -__version__ = "0.5.0" +__version__ = "0.5.1" from .sparql_router import SparqlRouter from .sparql_endpoint import SparqlEndpoint