Skip to content

Commit

Permalink
[release] Update version to 0.14.0 and 0.15.0.dev on main branch (#15847
Browse files Browse the repository at this point in the history
)

* [release] Update version to 0.14.0 on main branch

* [Release] Update version to 0.15.dev0 on main branch
  • Loading branch information
ysh329 authored Oct 11, 2023
1 parent 4e9866f commit 9f562b0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion conda/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

{% set version = '0.14.dev0' %}
{% set version = '0.15.dev0' %}
{% set pkg_name = 'tvm' %}
{% set cuda_tag = cuda_version | replace('.', '') %} # [cuda]
{% set pkg_name = pkg_name + '-cu' + cuda_tag %} # [cuda]
Expand Down
2 changes: 1 addition & 1 deletion include/tvm/runtime/c_runtime_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
#endif

// TVM version
#define TVM_VERSION "0.14.dev0"
#define TVM_VERSION "0.15.dev0"

// TVM Runtime is DLPack compatible.
#include <dlpack/dlpack.h>
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/_ffi/libinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,4 +227,4 @@ def find_include_path(name=None, search_path=None, optional=False):
# 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.14.dev0"
__version__ = "0.15.dev0"
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.14.dev0"
__version__ = "0.15.dev0"

# ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tvmjs",
"displayName": "TVM Wasm JS runtime",
"license": "Apache-2.0",
"version": "0.14.0-dev0",
"version": "0.15.0-dev0",
"scripts": {
"prepwasm": "make && python3 tests/python/prepare_test_libs.py",
"build": "tsc -b && make rmtypedep",
Expand Down

0 comments on commit 9f562b0

Please sign in to comment.