Skip to content

Commit c75932b

Browse files
authored
Merge pull request #83748 from swiftlang/bump-version-6.3
Bump the Swift version to 6.3
2 parents cbcef93 + 8c2bc95 commit c75932b

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

Runtimes/Core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ if($ENV{BUILD_NUMBER})
5959
endif()
6060
project(SwiftCore
6161
LANGUAGES C CXX Swift
62-
VERSION 6.1.0${BUILD_NUMBER})
62+
VERSION 6.3.0${BUILD_NUMBER})
6363

6464
# The Swift standard library is not intended for use as a sub-library as part of
6565
# another project. It is tightly coupled with the compiler version.

Runtimes/Overlay/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if($ENV{BUILD_NUMBER})
2929
endif()
3030
project(SwiftOverlay
3131
LANGUAGES C CXX Swift
32-
VERSION 6.1.0${BUILD_NUMBER})
32+
VERSION 6.3.0${BUILD_NUMBER})
3333

3434
set(CMAKE_Swift_LANGUAGE_VERSION 5)
3535

Runtimes/Supplemental/Differentiation/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if($ENV{BUILD_NUMBER})
1515
endif()
1616
project(SwiftDifferentiation
1717
LANGUAGES Swift C
18-
VERSION 6.1.0${BUILD_NUMBER})
18+
VERSION 6.3.0${BUILD_NUMBER})
1919

2020
if(NOT PROJECT_IS_TOP_LEVEL)
2121
message(SEND_ERROR "Swift Differentiation must build as a standalone project")

Runtimes/Supplemental/Observation/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if($ENV{BUILD_NUMBER})
1515
endif()
1616
project(SwiftObservation
1717
LANGUAGES Swift CXX
18-
VERSION 6.1.0${BUILD_NUMBER})
18+
VERSION 6.3.0${BUILD_NUMBER})
1919

2020
if(NOT PROJECT_IS_TOP_LEVEL)
2121
message(SEND_ERROR "Swift Observation must build as a standalone project")

Runtimes/Supplemental/StringProcessing/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if($ENV{BUILD_NUMBER})
1515
endif()
1616
project(SwiftStringProcessing
1717
LANGUAGES Swift C
18-
VERSION 6.1.0${BUILD_NUMBER})
18+
VERSION 6.3.0${BUILD_NUMBER})
1919

2020
if(NOT PROJECT_IS_TOP_LEVEL)
2121
message(FATAL_ERROR "Swift StringProcessing must build as a standalone project")

Runtimes/Supplemental/Synchronization/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if($ENV{BUILD_NUMBER})
1515
endif()
1616
project(SwiftSynchronization
1717
LANGUAGES Swift
18-
VERSION 6.1.0${BUILD_NUMBER})
18+
VERSION 6.3.0${BUILD_NUMBER})
1919
# FIXME(compnerd) this is a workaround for `GNUInstallDirs` which cannot be used
2020
# with a pure Swift project.
2121
enable_language(C)

Runtimes/Supplemental/Volatile/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if($ENV{BUILD_NUMBER})
1515
endif()
1616
project(SwiftVolatile
1717
LANGUAGES Swift
18-
VERSION 6.1.0${BUILD_NUMBER})
18+
VERSION 6.3.0${BUILD_NUMBER})
1919
# FIXME(compnerd) this is a workaround for `GNUInstallDirs` which cannot be used
2020
# with a pure Swift project.
2121
enable_language(C)

cmake/SwiftVersion.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
# can be reused when a new version of Swift comes out (assuming the user hasn't
33
# manually set it as part of their own CMake configuration).
44
set(SWIFT_VERSION_MAJOR 6)
5-
set(SWIFT_VERSION_MINOR 2)
5+
set(SWIFT_VERSION_MINOR 3)
66
set(SWIFT_VERSION "${SWIFT_VERSION_MAJOR}.${SWIFT_VERSION_MINOR}")
77

test/IRGen/objc.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class WeakObjC {
139139
// CHECK: i32 1, !"Objective-C Version", i32 2}
140140
// CHECK: i32 1, !"Objective-C Image Info Version", i32 0}
141141
// CHECK: i32 1, !"Objective-C Image Info Section", !"__DATA,__objc_imageinfo,regular,no_dead_strip"}
142-
// 100796160 == (6 << 24) | (2 << 16) | (7 << 8).
143-
// 6 and 2 is the current major.minor version. 7 is the Swift ABI version.
144-
// CHECK: i32 4, !"Objective-C Garbage Collection", i32 100796160}
142+
// 100861696 == (6 << 24) | (3 << 16) | (7 << 8).
143+
// 6 and 3 is the current major.minor version. 7 is the Swift ABI version.
144+
// CHECK: i32 4, !"Objective-C Garbage Collection", i32 100861696}
145145
// CHECK: i32 1, !"Swift Version", i32 7}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %sourcekitd-test -req=compiler-version | %FileCheck %s
22

33
// CHECK: key.version_major: 6
4-
// CHECK: key.version_minor: 2
4+
// CHECK: key.version_minor: 3
55
// CHECK: key.version_patch: 0

0 commit comments

Comments
 (0)