From 47e077298f0060d940b2e3c20598675028de194d Mon Sep 17 00:00:00 2001 From: Tpt Date: Sat, 2 Apr 2022 20:39:25 +0200 Subject: [PATCH] Releases v0.3.1 --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..9a78c9c --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,33 @@ +## [0.3.1] - 2022-04-02 + +### Added +- `OxigraphStore` now implements the `bind` method allowing to set namespaces. + These namespaces are not persisted on disk. +- The `query` method now injects the namespaces set in the `Graph` object (including the ones set by default in rdflib) inside of SPARQL queries. + +### Changed +- The default branch is now named `main` and not `master`. + + +## [0.3.0] - 2022-03-19 + +### Added +- `OxigraphStore` that provides both in-memory and disk-based storage. + The storage format is not compatible with the one of the `SledStore`. + +### Removed +- `MemoryStore` and `SledStore` +- Compatibility with Python 3.6 and rdflib 4 and 5. + + +## [0.2.1] - 2022-03-12 + +### Added +- Compatibility with rdflib 6. + + +## [0.2.0] - 2021-01-07 + +### Added +- `MemoryStore` in memory rdflib storage using Oxigraph. +- `SledStore` in disk-based rdflib storage using Oxigraph. diff --git a/setup.py b/setup.py index c9cef28..028fd78 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="oxrdflib", - version="0.3.0", + version="0.3.1", description="rdflib stores based on pyoxigraph", long_description=(pathlib.Path(__file__).parent / "README.md").read_text(), long_description_content_type="text/markdown",