Skip to content

Commit

Permalink
upgrade version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Mar 21, 2023
1 parent 54fb92c commit f29e61d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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`.

Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/rdflib_endpoint/__init__.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f29e61d

Please sign in to comment.