Browse Source

Merge branch 'release-0.0.2' into dev

Arkadiusz Ryś 2 years ago
parent
commit
f352f1c57b
2 changed files with 6 additions and 1 deletions
  1. 5 0
      HISTORY.rst
  2. 1 1
      graph_exploring_tool/__init__.py

+ 5 - 0
HISTORY.rst

@@ -2,6 +2,11 @@
 History
 =======
 
+0.0.2 (2023-05-04)
+------------------
+* Add documentation.
+* Fix bugs.
+
 0.0.1 (2023-03-07)
 ------------------
 * Initial version for demo.

+ 1 - 1
graph_exploring_tool/__init__.py

@@ -1,3 +1,3 @@
 """Graph Exploring Tool."""
-__version__ = "0.0.1"
+__version__ = "0.0.2"
 __version_info__ = tuple((int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")))