From bd9ac8f1d2606fb211dcd04dce3c42a9dd317475 Mon Sep 17 00:00:00 2001 From: Stephen Roller Date: Wed, 7 Jul 2021 14:57:36 -0400 Subject: [PATCH] [version] Bump to v1.3.0. (#3766) --- 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 13d928692cc..de65c0951cc 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__ = '1.2.0' +__version__ = '1.3.0' diff --git a/setup.py b/setup.py index db2846528bc..60fc3107299 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import setup, find_packages -VERSION = '1.2.0' # if you update, update parlai/__init__.py too! +VERSION = '1.3.0' # if you update, update parlai/__init__.py too! if sys.version_info < (3, 7): sys.exit('Sorry, Python >=3.7 is required for ParlAI.')