Skip to content

Commit 59bccf3

Browse files
[SYCL][7.0.0] Disable PRE_RELEASE (#22613)
Setting PRE_RELEASE to 0 as this is now a stable release. Customers who build the compiler from source should not see any "pre-release" messages in the version strings by default. Signed-off-by: Dmitry Vodopyanov <dmitry.vodopyanov@intel.com>
1 parent 41b9fdd commit 59bccf3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/sycl-rel-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
pre_release:
1010
description: PRE_RELEASE CMake variable value (e.g. 0 or 1)
1111
required: false
12-
default: '1'
12+
default: '0'
1313

1414

1515
permissions: read-all

cmake/Modules/DPCPPVersion.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ if(NOT DEFINED DPCPP_VERSION_PATCH)
1010
set(DPCPP_VERSION_PATCH 0)
1111
endif()
1212
if(NOT DEFINED PRE_RELEASE)
13-
set(PRE_RELEASE 1)
13+
set(PRE_RELEASE 0)
1414
endif()

0 commit comments

Comments
 (0)