diff --git a/VERSION_NUMBER b/VERSION_NUMBER
index 0ea3a944b399d..0c62199f16ac1 100644
--- a/VERSION_NUMBER
+++ b/VERSION_NUMBER
@@ -1 +1 @@
-0.2.0
+0.2.1
diff --git a/docs/Versioning.md b/docs/Versioning.md
index 386782167c020..6468f97a117b1 100644
--- a/docs/Versioning.md
+++ b/docs/Versioning.md
@@ -30,6 +30,7 @@ opset version implemented in that release.
| ONNX Runtime release version | ONNX opset version
implemented in this release | ONNX ML opset version
implemented in this release | Supported ONNX IR version |
|------------------------------|--------------------|----------------------|------------------|
+| 0.2.1 | 8 | 1 | 3 |
| 0.2.0 | 8 | 1 | 3 |
| 0.1.5 | 8 | 1 | 3 |
| 0.1.4 | 8 | 1 | 3 |
diff --git a/docs/python/README.rst b/docs/python/README.rst
index 9bb846deb9ece..74553f61a77c5 100644
--- a/docs/python/README.rst
+++ b/docs/python/README.rst
@@ -52,6 +52,11 @@ replaces *scikit-learn* to compute the predictions.
Changes
-------
+0.2.1
+^^^^^
+
+C-API, Linux support for Dotnet Nuget package, Cuda 10.0 support (patch to 0.2.0).
+
0.2.0
^^^^^
diff --git a/onnxruntime/__init__.py b/onnxruntime/__init__.py
index ca2e418d0bab7..f14d69330adb7 100644
--- a/onnxruntime/__init__.py
+++ b/onnxruntime/__init__.py
@@ -12,7 +12,7 @@
as Deep Learning algorithms in the
`ONNX-ML format `_.
"""
-__version__ = "0.2.0"
+__version__ = "0.2.1"
__author__ = "Microsoft"
from onnxruntime.capi import onnxruntime_validation
diff --git a/package/rpm/onnxruntime.spec b/package/rpm/onnxruntime.spec
index 02d93ba62d5b6..03fac28dbc3c9 100644
--- a/package/rpm/onnxruntime.spec
+++ b/package/rpm/onnxruntime.spec
@@ -1,5 +1,5 @@
Name: onnxruntime
-Version: 0.2.0
+Version: 0.2.1
Release: 1%{?dist}
Summary: onnxruntime
diff --git a/setup.py b/setup.py
index 5283f8f79b7a9..615b5af73cd61 100644
--- a/setup.py
+++ b/setup.py
@@ -53,7 +53,7 @@ def finalize_options(self):
# Setup
setup(
name=package_name,
- version='0.2.0',
+ version='0.2.1',
description='ONNX Runtime Python bindings',
long_description=long_description,
author='Microsoft Corporation',