diff --git a/baynet/__init__.py b/baynet/__init__.py index ee669e2..1c240e7 100644 --- a/baynet/__init__.py +++ b/baynet/__init__.py @@ -3,6 +3,7 @@ from typing import Any from baynet.structure import DAG +__version__ = "0.2.0" class Graph(DAG): """Temporary thin wrapper to preserve old API.""" diff --git a/setup.py b/setup.py index cee91b4..8bcb397 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ def run(self) -> None: setup( cmdclass={"install": CustomInstallCommand, "develop": CustomDevelopCommand}, name="BayNet", - version="0.0.2-dev", + version="0.2.0", author="Chris Robinson", author_email="c.f.robinson@sussex.ac.uk", description="(another) Python Bayesian Network library",