[Release] Adjust version to 0.11.1 (#14300)

* Adjust version numbers for source package release, which
  does not contain git metadata to infer the release version.

Change-Id: Ica12161b509a406cfe0ff26dd545b9a7ad20f89a
diff --git a/conda/recipe/meta.yaml b/conda/recipe/meta.yaml
index 519b84c..e435d78 100644
--- a/conda/recipe/meta.yaml
+++ b/conda/recipe/meta.yaml
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-{% set version = '0.11.dev0' %}
+{% set version = '0.11.1' %}
 {% set pkg_name = 'tvm' %}
 {% set cuda_tag = cuda_version | replace('.', '') %} # [cuda]
 {% set pkg_name = pkg_name + '-cu' + cuda_tag %} # [cuda]
diff --git a/include/tvm/runtime/c_runtime_api.h b/include/tvm/runtime/c_runtime_api.h
index cd11466..d15dbbd 100644
--- a/include/tvm/runtime/c_runtime_api.h
+++ b/include/tvm/runtime/c_runtime_api.h
@@ -66,7 +66,7 @@
 #endif
 
 // TVM version
-#define TVM_VERSION "0.11.dev0"
+#define TVM_VERSION "0.11.1"
 
 // TVM Runtime is DLPack compatible.
 #include <dlpack/dlpack.h>
diff --git a/python/tvm/_ffi/libinfo.py b/python/tvm/_ffi/libinfo.py
index fdd888a..f1b7da4 100644
--- a/python/tvm/_ffi/libinfo.py
+++ b/python/tvm/_ffi/libinfo.py
@@ -220,4 +220,4 @@
 # We use the version of the incoming release for code
 # that is under development.
 # The following line is set by tvm/python/update_version.py
-__version__ = "0.11.dev0"
+__version__ = "0.11.1"
diff --git a/version.py b/version.py
index 6381c0a..7b7594b 100644
--- a/version.py
+++ b/version.py
@@ -44,7 +44,7 @@
 # Two tag formats are supported:
 # - vMAJ.MIN.PATCH (e.g. v0.8.0) or
 # - vMAJ.MIN.devN (e.g. v0.8.dev0)
-__version__ = "0.11.dev0"
+__version__ = "0.11.1"
 
 # ---------------------------------------------------
 
diff --git a/web/package.json b/web/package.json
index 4cc88dc..c216d93 100644
--- a/web/package.json
+++ b/web/package.json
@@ -2,7 +2,7 @@
   "name": "tvmjs",
   "displayName": "TVM Wasm JS runtime",
   "license": "Apache-2.0",
-  "version": "0.11.0-dev0",
+  "version": "0.11.1",
   "scripts": {
     "prepwasm": "make && python3 tests/python/prepare_test_libs.py",
     "build": "tsc -b && make rmtypedep",