Skip to content

Commit

Permalink
change version for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
zaliu committed Jun 3, 2020
1 parent d96a68a commit 91a0c50
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion HostLibraryTests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ if(TENSILE_STATIC_ONLY)
endif()

if(NOT Tensile_FOUND)
find_package(Tensile 4.19.0 EXACT REQUIRED ${TENSILE_COMPONENTS} PATHS "${CMAKE_CURRENT_SOURCE_DIR}/../Tensile")
find_package(Tensile 4.20.0 EXACT REQUIRED ${TENSILE_COMPONENTS} PATHS "${CMAKE_CURRENT_SOURCE_DIR}/../Tensile")
endif()

if(NOT TENSILE_DISABLE_CTEST)
Expand Down
2 changes: 1 addition & 1 deletion Tensile/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from __future__ import print_function

# hardcoded tensile version; also in Tensile/Source/TensileConfigVersion.cmake
__version__ = "4.19.0"
__version__ = "4.20.0"

def PrintTensileRoot():
import os.path
Expand Down
2 changes: 1 addition & 1 deletion Tensile/cmake/TensileConfigVersion.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

# hardcoded tensile version; also in Tensile/__init__.py
set(TENSILE_VERSION_MAJOR 4)
set(TENSILE_VERSION_MINOR 19)
set(TENSILE_VERSION_MINOR 20)
set(TENSILE_VERSION_PATCH 0)

# export version
Expand Down
4 changes: 2 additions & 2 deletions bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# This script needs to be edited to bump version for new release.
# Version will be bumped in Tensile/__init__.py and in .yaml files

OLD_VERSION="4.18.0"
NEW_VERSION="4.19.0"
OLD_VERSION="4.19.0"
NEW_VERSION="4.20.0"

OLD_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.7.2"
NEW_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.8.0"
Expand Down

0 comments on commit 91a0c50

Please sign in to comment.