From f29e61dcd08549224a74a2166617297894230fff Mon Sep 17 00:00:00 2001 From: Vincent Emonet Date: Tue, 21 Mar 2023 10:26:04 +0100 Subject: [PATCH] upgrade version to 0.4.0 --- README.md | 12 ++++++++++-- src/rdflib_endpoint/__init__.py | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8fee2cd..ff26c73 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ rdflib-endpoint serve --store Oxigraph "*.ttl" "*.jsonld" "*.nq" rdflib-endpoint convert "*.ttl" "*.jsonld" "*.nq" --output "merged.trig" ``` -## ✨ Deploy a SPARQL endpoint +## ✨ Deploy your SPARQL endpoint `rdflib-endpoint` enables you to easily define and deploy SPARQL endpoints based on RDFLib Graph, ConjunctiveGraph, and Dataset. Additionally it provides helpers to defines custom functions in the endpoint. @@ -199,7 +199,7 @@ SELECT ?concat ?concatLength WHERE { ) ```` -### 🗜️ Or directly define the custom evaluation +### ✒️ Or directly define the custom evaluation You can also directly provide the custom evaluation function, this will override the `functions`. @@ -307,6 +307,14 @@ Check the code for errors, and if it is in accordance with the PEP8 style guide, hatch run check ``` +### ✅ Run all checks + +Run all checks (fmt, linting, tests) with: + +```bash +hatch run all +``` + ### ♻️ Reset the environment In case you are facing issues with dependencies not updating properly you can easily reset the virtual environment with: diff --git a/src/rdflib_endpoint/__init__.py b/src/rdflib_endpoint/__init__.py index f2bd2a8..80f3f53 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.3.0" +__version__ = "0.4.0" from .sparql_router import SparqlRouter from .sparql_endpoint import SparqlEndpoint