From 0579b0c7139679eadec340ee15f8e38e886942ef Mon Sep 17 00:00:00 2001 From: hunterhector Date: Mon, 29 Mar 2021 13:05:21 -0400 Subject: [PATCH] Update version number --- setup.py | 2 +- texar/torch/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c020ed6ac..32b196eed 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setuptools.setup( name="texar-pytorch", - version="0.1.2-unreleased", + version="0.1.2", url="https://github.com/asyml/texar-pytorch", description="Toolkit for Machine Learning and Text Generation", diff --git a/texar/torch/version.py b/texar/torch/version.py index fc60cec65..18de69c37 100644 --- a/texar/torch/version.py +++ b/texar/torch/version.py @@ -14,7 +14,7 @@ _MAJOR = "0" _MINOR = "1" -_REVISION = "2-unreleased" +_REVISION = "2" VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR) VERSION = "{0}.{1}.{2}".format(_MAJOR, _MINOR, _REVISION)