Sfoglia il codice sorgente

Merge branch 'release-0.1.0' into dev

Arkadiusz Ryś 2 anni fa
parent
commit
e01a9e295a
2 ha cambiato i file con 6 aggiunte e 1 eliminazioni
  1. 5 0
      HISTORY.rst
  2. 1 1
      spendpoint/__init__.py

+ 5 - 0
HISTORY.rst

@@ -2,6 +2,11 @@
 History
 =======
 
+0.1.0 (2023-03-06)
+------------------
+* Create outlier service bridge.
+* Fix Fuseki access errors.
+
 0.0.1 (2023-02-28)
 ------------------
 * Release example.

+ 1 - 1
spendpoint/__init__.py

@@ -1,3 +1,3 @@
 """SPARQL endpoint for ontologies."""
-__version__ = "0.0.1"
+__version__ = "0.1.0"
 __version_info__ = tuple((int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")))