From 8ee05e5565620d00532ef34d275b98f4801dc295 Mon Sep 17 00:00:00 2001 From: "Costabello, Luca" Date: Tue, 22 Oct 2019 16:16:29 +0100 Subject: [PATCH] updated version number --- README.md | 2 +- ampligraph/__init__.py | 2 +- docs/install.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3eeb3adb..8c4ae702 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ pip install -e . ```python >> import ampligraph >> ampligraph.__version__ -'1.2-dev' +'1.2.0' ``` diff --git a/ampligraph/__init__.py b/ampligraph/__init__.py index de08e791..ac38818e 100644 --- a/ampligraph/__init__.py +++ b/ampligraph/__init__.py @@ -9,7 +9,7 @@ import logging.config import pkg_resources -__version__ = '1.2-dev' +__version__ = '1.2.0' __all__ = ['datasets', 'latent_features', 'discovery', 'evaluation', 'utils'] logging.config.fileConfig(pkg_resources.resource_filename(__name__, 'logger.conf'), disable_existing_loggers=False) diff --git a/docs/install.md b/docs/install.md index 42bb6afa..1629e1e0 100644 --- a/docs/install.md +++ b/docs/install.md @@ -66,5 +66,5 @@ pip install -e . ```python >> import ampligraph >> ampligraph.__version__ -'1.2-dev' +'1.2.0' ```