Skip to content

Commit 1ed3dff

Browse files
authored
Merge pull request #76601 from swiftlang/bump-the-version-to-6.0.2
Bump the Swift version to 6.0.2
2 parents 024ca74 + 71b163e commit 1ed3dff

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cmake/SwiftVersion.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# manually set it as part of their own CMake configuration).
44
set(SWIFT_VERSION_MAJOR 6)
55
set(SWIFT_VERSION_MINOR 0)
6-
set(SWIFT_VERSION_PATCHLEVEL 1)
6+
set(SWIFT_VERSION_PATCHLEVEL 2)
77
set(SWIFT_VERSION "${SWIFT_VERSION_MAJOR}.${SWIFT_VERSION_MINOR}.${SWIFT_VERSION_PATCHLEVEL}")
88

test/IRGen/objc.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,6 @@ class WeakObjC {
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"}
142142
// 100665088 == (6 << 24) | (0 << 16) | (7 << 8).
143-
// 5 and 8 is the current major.minor version. 7 is the Swift ABI version.
143+
// 6 and 0 is the current major.minor version. 7 is the Swift ABI version.
144144
// CHECK: i32 4, !"Objective-C Garbage Collection", i32 100665088}
145145
// CHECK: i32 1, !"Swift Version", i32 7}

test/SourceKit/Misc/compiler_version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
// CHECK: key.version_major: 6
44
// CHECK: key.version_minor: 0
5-
// CHECK: key.version_patch: 1
5+
// CHECK: key.version_patch: 2

utils/build_swift/build_swift/defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
CMAKE_GENERATOR = 'Ninja'
4848

4949
COMPILER_VENDOR = 'none'
50-
SWIFT_USER_VISIBLE_VERSION = Version('6.0.1')
50+
SWIFT_USER_VISIBLE_VERSION = Version('6.0.2')
5151
CLANG_USER_VISIBLE_VERSION = Version('17.0.0')
5252
SWIFT_ANALYZE_CODE_COVERAGE = 'false'
5353

0 commit comments

Comments
 (0)