Parcourir la source

Merge branch 'release-0.2.0' into dev

Arkadiusz Ryś il y a 2 ans
Parent
commit
7da181bf1c
2 fichiers modifiés avec 9 ajouts et 1 suppressions
  1. 8 0
      HISTORY.rst
  2. 1 1
      spendpoint/__init__.py

+ 8 - 0
HISTORY.rst

@@ -2,6 +2,14 @@
 History
 =======
 
+0.0.0 (yyyy-mm-dd)
+------------------
+* Add conversion service.
+
+0.2.0 (2023-04-04)
+------------------
+* Prototype conversion service.
+
 0.1.0 (2023-03-06)
 ------------------
 * Create outlier service bridge.

+ 1 - 1
spendpoint/__init__.py

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