Skip to content

Commit 046910a

Browse files
authored
[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
1 parent 46fae40 commit 046910a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

conda/recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
{% set version = '0.11.dev0' %}
18+
{% set version = '0.11.1' %}
1919
{% set pkg_name = 'tvm' %}
2020
{% set cuda_tag = cuda_version | replace('.', '') %} # [cuda]
2121
{% set pkg_name = pkg_name + '-cu' + cuda_tag %} # [cuda]

include/tvm/runtime/c_runtime_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
#endif
6767

6868
// TVM version
69-
#define TVM_VERSION "0.11.dev0"
69+
#define TVM_VERSION "0.11.1"
7070

7171
// TVM Runtime is DLPack compatible.
7272
#include <dlpack/dlpack.h>

python/tvm/_ffi/libinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,4 +220,4 @@ def find_include_path(name=None, search_path=None, optional=False):
220220
# We use the version of the incoming release for code
221221
# that is under development.
222222
# The following line is set by tvm/python/update_version.py
223-
__version__ = "0.11.dev0"
223+
__version__ = "0.11.1"

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
# Two tag formats are supported:
4545
# - vMAJ.MIN.PATCH (e.g. v0.8.0) or
4646
# - vMAJ.MIN.devN (e.g. v0.8.dev0)
47-
__version__ = "0.11.dev0"
47+
__version__ = "0.11.1"
4848

4949
# ---------------------------------------------------
5050

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tvmjs",
33
"displayName": "TVM Wasm JS runtime",
44
"license": "Apache-2.0",
5-
"version": "0.11.0-dev0",
5+
"version": "0.11.1",
66
"scripts": {
77
"prepwasm": "make && python3 tests/python/prepare_test_libs.py",
88
"build": "tsc -b && make rmtypedep",

0 commit comments

Comments
 (0)