diff --git a/setup.py b/setup.py index c020ed6a..32b196ee 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 fc60cec6..18de69c3 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)