From 1c875697fdb20ab452b2c11cf8bfa2c0e88b5ad3 Mon Sep 17 00:00:00 2001 From: Weihua Hu Date: Wed, 2 Nov 2022 14:58:58 -0700 Subject: [PATCH] version update to 1.3.5 --- README.md | 6 +++--- ogb/version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 40b6453e..767005c6 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,8 @@ OGB is an on-going effort, and we are planning to increase our coverage in the f ## Installation You can install OGB using Python's package manager `pip`. -**If you have previously installed ogb, please make sure you update the version to 1.3.4.** -The release note is available [here](https://github.com/snap-stanford/ogb/releases/tag/1.3.4). +**If you have previously installed ogb, please make sure you update the version to 1.3.5.** +The release note is available [here](https://github.com/snap-stanford/ogb/releases/tag/1.3.5). #### Requirements - Python>=3.6 @@ -53,7 +53,7 @@ pip install ogb ```bash python -c "import ogb; print(ogb.__version__)" -# This should print "1.3.4". Otherwise, please update the version by +# This should print "1.3.5". Otherwise, please update the version by pip install -U ogb ``` diff --git a/ogb/version.py b/ogb/version.py index 3932a09e..0aefbc01 100644 --- a/ogb/version.py +++ b/ogb/version.py @@ -2,7 +2,7 @@ import logging from threading import Thread -__version__ = '1.3.4' +__version__ = '1.3.5' try: os.environ['OUTDATED_IGNORE'] = '1'