Skip to content

Commit

Permalink
version for master branch release
Browse files Browse the repository at this point in the history
  • Loading branch information
amcamd committed Feb 28, 2019
1 parent cc95814 commit 90bbc3b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ include( ROCMInstallTargets )
include( ROCMPackageConfigHelpers )
include( ROCMInstallSymlinks )

set ( VERSION_STRING "2.2.1." )
set ( VERSION_STRING "2.2.0." )
# Check if BUILD_NUMBER is defined in a Jenkins envirnment
if ($ENV{BUILD_NUMBER} )
string(CONCAT BUILD_VERSION ${VERSION_STRING} $ENV{BUILD_NUMBER})
Expand Down Expand Up @@ -177,7 +177,7 @@ if( BUILD_WITH_TENSILE )
else()
# Use the virtual-env setup and download package from specified repot:
set( tensile_fork "ROCmSoftwarePlatform" CACHE STRING "Tensile fork to use" )
set( tensile_tag "develop" CACHE STRING "Tensile tag to download" )
set( tensile_tag v4.9.0 CACHE STRING "Tensile tag to download" )
virtualenv_install("git+https://github.com/${tensile_fork}/Tensile.git@${tensile_tag}")
message (STATUS "using GIT Tensile fork=${tensile_fork} from branch=${tensile_tag}")
endif()
Expand Down
6 changes: 3 additions & 3 deletions bump_develop_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
# - run this script in master branch
# - after running this script merge master into develop

OLD_ROCBLAS_VERSION="2.1.1"
NEW_ROCBLAS_VERSION="2.2.1"
OLD_ROCBLAS_VERSION="2.2.0"
NEW_ROCBLAS_VERSION="2.3.0"

OLD_TENSILE_VERSION="tensile_tag d81a997e7cace7da2edfb8c5d40a9b6b2387bdf9"
OLD_TENSILE_VERSION="tensile_tag v4.9.0"
NEW_TENSILE_VERSION="tensile_tag \"develop\""

sed -i "s/${OLD_ROCBLAS_VERSION}/${NEW_ROCBLAS_VERSION}/g" CMakeLists.txt
Expand Down
6 changes: 3 additions & 3 deletions bump_master_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
# - after running this script and merging develop into master, run bump_develop_version.sh in master and
# merge master into develop

OLD_ROCBLAS_VERSION="2.1.0"
NEW_ROCBLAS_VERSION="2.1.1"
OLD_ROCBLAS_VERSION="2.2.1"
NEW_ROCBLAS_VERSION="2.2.0"

OLD_TENSILE_VERSION="tensile_tag \"develop\""
NEW_TENSILE_VERSION="tensile_tag d81a997e7cace7da2edfb8c5d40a9b6b2387bdf9"
NEW_TENSILE_VERSION="tensile_tag v4.9.0"

OLD_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.6.0"
NEW_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.7.1"
Expand Down

0 comments on commit 90bbc3b

Please sign in to comment.