From 5b715674d81ff06a945df353deac4e23523ea685 Mon Sep 17 00:00:00 2001 From: Kurt Shuster Date: Fri, 23 Jul 2021 10:01:42 -0400 Subject: [PATCH] release 1.4.1 (#3849) --- 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 a4dc3e2f88a..f0020559714 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.4.0' +__version__ = '1.4.1' diff --git a/setup.py b/setup.py index ca5a5a1be28..9b698da8c16 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import setup, find_packages -VERSION = '1.4.0' # if you update, update parlai/__init__.py too! +VERSION = '1.4.1' # if you update, update parlai/__init__.py too! if sys.version_info < (3, 7): sys.exit('Sorry, Python >=3.7 is required for ParlAI.')