From 291970a63470d9824a40143754c500e2dfd9c652 Mon Sep 17 00:00:00 2001 From: Stephen Roller Date: Tue, 18 Aug 2020 10:23:14 -0400 Subject: [PATCH] Tie off release 0.9.0. (#2987) --- parlai/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/parlai/__init__.py b/parlai/__init__.py index e47601d7626..74f9fe1d725 100644 --- a/parlai/__init__.py +++ b/parlai/__init__.py @@ -4,4 +4,4 @@ # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. -__version__ = '0.8.0' +__version__ = '0.9.0' diff --git a/setup.py b/setup.py index 97a0264b4a4..d6225a9dadb 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import setup, find_packages -VERSION = '0.8.0' # if you update, update parlai/__init__.py too! +VERSION = '0.9.0' # if you update, update parlai/__init__.py too! if sys.version_info < (3, 6): sys.exit('Sorry, Python >=3.6 is required for ParlAI.')