Skip to content

Commit 47e0772

Browse files
committed
Releases v0.3.1
1 parent b6f34f4 commit 47e0772

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
## [0.3.1] - 2022-04-02
2+
3+
### Added
4+
- `OxigraphStore` now implements the `bind` method allowing to set namespaces.
5+
These namespaces are not persisted on disk.
6+
- The `query` method now injects the namespaces set in the `Graph` object (including the ones set by default in rdflib) inside of SPARQL queries.
7+
8+
### Changed
9+
- The default branch is now named `main` and not `master`.
10+
11+
12+
## [0.3.0] - 2022-03-19
13+
14+
### Added
15+
- `OxigraphStore` that provides both in-memory and disk-based storage.
16+
The storage format is not compatible with the one of the `SledStore`.
17+
18+
### Removed
19+
- `MemoryStore` and `SledStore`
20+
- Compatibility with Python 3.6 and rdflib 4 and 5.
21+
22+
23+
## [0.2.1] - 2022-03-12
24+
25+
### Added
26+
- Compatibility with rdflib 6.
27+
28+
29+
## [0.2.0] - 2021-01-07
30+
31+
### Added
32+
- `MemoryStore` in memory rdflib storage using Oxigraph.
33+
- `SledStore` in disk-based rdflib storage using Oxigraph.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name="oxrdflib",
7-
version="0.3.0",
7+
version="0.3.1",
88
description="rdflib stores based on pyoxigraph",
99
long_description=(pathlib.Path(__file__).parent / "README.md").read_text(),
1010
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)