diff --git a/Runtimes/Core/CMakeLists.txt b/Runtimes/Core/CMakeLists.txt index b6a7ba8ba0585..94222aa1b69ad 100644 --- a/Runtimes/Core/CMakeLists.txt +++ b/Runtimes/Core/CMakeLists.txt @@ -54,7 +54,7 @@ if($ENV{BUILD_NUMBER}) endif() project(SwiftCore LANGUAGES C CXX Swift - VERSION 6.2.0${BUILD_NUMBER}) + VERSION 6.2.4${BUILD_NUMBER}) # The Swift standard library is not intended for use as a sub-library as part of # another project. It is tightly coupled with the compiler version. diff --git a/Runtimes/Overlay/CMakeLists.txt b/Runtimes/Overlay/CMakeLists.txt index a0654bac9a075..2ef69f47abfce 100644 --- a/Runtimes/Overlay/CMakeLists.txt +++ b/Runtimes/Overlay/CMakeLists.txt @@ -20,7 +20,7 @@ if($ENV{BUILD_NUMBER}) endif() project(SwiftOverlay LANGUAGES C CXX Swift - VERSION 6.2.0${BUILD_NUMBER}) + VERSION 6.2.4${BUILD_NUMBER}) find_package(SwiftCore) diff --git a/Runtimes/Supplemental/StringProcessing/CMakeLists.txt b/Runtimes/Supplemental/StringProcessing/CMakeLists.txt index a49c5c633834c..e8686150a9053 100644 --- a/Runtimes/Supplemental/StringProcessing/CMakeLists.txt +++ b/Runtimes/Supplemental/StringProcessing/CMakeLists.txt @@ -10,7 +10,7 @@ if($ENV{BUILD_NUMBER}) endif() project(SwiftStringProcessing LANGUAGES Swift C - VERSION 6.2.0${BUILD_NUMBER}) + VERSION 6.2.4${BUILD_NUMBER}) if(NOT PROJECT_IS_TOP_LEVEL) message(FATAL_ERROR "Swift StringProcessing must build as a standalone project") diff --git a/cmake/SwiftVersion.cmake b/cmake/SwiftVersion.cmake index 5f8cf8221a79f..9bfae5a59307e 100644 --- a/cmake/SwiftVersion.cmake +++ b/cmake/SwiftVersion.cmake @@ -3,6 +3,6 @@ # manually set it as part of their own CMake configuration). set(SWIFT_VERSION_MAJOR 6) set(SWIFT_VERSION_MINOR 2) -set(SWIFT_VERSION_PATCHLEVEL 3) +set(SWIFT_VERSION_PATCHLEVEL 4) set(SWIFT_VERSION "${SWIFT_VERSION_MAJOR}.${SWIFT_VERSION_MINOR}.${SWIFT_VERSION_PATCHLEVEL}") diff --git a/test/SourceKit/Misc/compiler_version.swift b/test/SourceKit/Misc/compiler_version.swift index 94260513c2d3f..6f286d584faca 100644 --- a/test/SourceKit/Misc/compiler_version.swift +++ b/test/SourceKit/Misc/compiler_version.swift @@ -2,4 +2,4 @@ // CHECK: key.version_major: 6 // CHECK: key.version_minor: 2 -// CHECK: key.version_patch: 3 +// CHECK: key.version_patch: 4 diff --git a/utils/build_swift/build_swift/defaults.py b/utils/build_swift/build_swift/defaults.py index 493a0ffbc4be1..27fa35f84b7d9 100644 --- a/utils/build_swift/build_swift/defaults.py +++ b/utils/build_swift/build_swift/defaults.py @@ -47,7 +47,7 @@ CMAKE_GENERATOR = 'Ninja' COMPILER_VENDOR = 'none' -SWIFT_USER_VISIBLE_VERSION = Version('6.2.3') +SWIFT_USER_VISIBLE_VERSION = Version('6.2.4') CLANG_USER_VISIBLE_VERSION = Version('17.0.0') SWIFT_ANALYZE_CODE_COVERAGE = 'false'