Swift 4.1 Release Process
This post describes the goals, release process, and estimated schedule for Swift 4.1.
Swift 4.1 is a source compatible update to Swift 4.0. It will contain a few additive enhancements to the core language as well as improvements to the Swift Package Manager, Swift on Linux, and general quality improvements to the compiler and Standard Library.
Swift 4.1 is not binary compatible with 4.0. It contains a variety of under-the-hood changes that are part of the effort to stabilize the Swift ABI in Swift 5.
Swift 4.1 is intended to be released in the first half of 2018.
Source Compatibility
The vast majority of sources that built with the Swift 4.0 compiler (including those using the Swift 3 compatibility mode) should compile with the Swift 4.1 compiler. There will be some exceptional cases where this cannot be an absolute guarantee. This includes fixes to incorrect behavior in the compiler or corner cases with the uses of generics now addressed by the introduction of long-anticipated generics features. The expectation, however, is that most projects will continue to build with no source changes.
Snapshots of Swift 4.1
Downloadable snapshots of the Swift 4.1 release branch will be posted regularly as part of continuous integration testing.
Once Swift 4.1 is released the official final builds will also be posted in addition to the snapshots.
Getting Changes into Swift 4.1
The swift-4.1-branch
contains the changes that will be released in Swift 4.1. The branch will be managed as follows:
- October 18, 2017 (initial branching): The
swift-4.1-branch
will be initially cut frommaster
. - Approximately every two weeks,
master
will be merged intoswift-4.1-branch
until the final branch date. - December 4, 2017 (final branching): The
swift-4.1-branch
will have changes merged frommaster
one last time. After the final branch date there will be a “bake” period in which only select, critical fixes will go into the release (via pull requests).
Four notable exceptions to this plan are swift-package-manager, swift-llbuild, swift-corelibs-foundation, and swift-corelibs-libdispatch which will merge from master
into swift-4.1-branch
daily and whose final cutoff date for changes will extend beyond December 4 and will be announced later.
Philosophy on Taking Changes into Swift 4.1
-
All language and API changes for Swift 4.1 will go through the Swift Evolution process, with criteria for what changes are in scope for the release documented there.
-
Other changes (e.g., bug fixes, diagnostic improvements, SourceKit interface improvements) will be accepted based on their risk and impact.
-
Low-risk test tweaks will also be accepted late into the release branch if it aids in the qualification of the release.
-
As the release converges, the criteria for accepted changes will become increasingly restrictive.
Impacted Repositories
The following repositories will have a swift-4.1-branch
branch to track sources as part of Swift 4.1 release:
- swift
- swift-clang
- swift-cmark
- swift-compiler-rt
- swift-corelibs-foundation
- swift-corelibs-libdispatch
- swift-corelibs-xctest
- swift-integration-tests
- swift-llbuild
- swift-lldb
- swift-llvm
- swift-package-manager
- swift-xcode-playground-support
The swift-llvm, swift-clang, swift-compiler-rt, and swift-lldb repositories have already branched swift-4.1-branch
from master
and will not rebranch again.
Release Managers
The overall management of the release will be overseen by the following individuals, who will announce when stricter control of change goes into effect for the Swift 4 release as the release converges:
-
Ted Kremenek is the overall release manager for Swift 4.1.
-
Frédéric Riss is the release manager for swift-llvm, swift-clang, and swift-compiler-rt.
-
Ben Cohen is the release manager for the Swift Standard Library.
-
Tony Parker is the release manager for swift-corelibs-foundation.
-
Daniel Steffen is the release manager for swift-corelibs-libdispatch.
-
Brian Croom is the release manager for swift-corelibs-xctest.
-
Rick Ballard is the release manager for swift-package-manager.
-
Daniel Dunbar is the release manager for swift-llbuild.
Please feel free to email swift-dev or Ted Kremenek directly concerning any questions about the release management process.
Note: Swift mailing lists have been shut down, archived, and replaced with Swift Forums. See the announcement here.
Pull Requests for Release Branch
In order for a pull request to be considered for inclusion in the release branch it must include the following information:
-
Explanation: A description of the issue being fixed or enhancement being made. This can be brief, but it should be clear.
-
Scope: An assessment of the impact/importance of the change. For example, is the change a source-breaking language change, etc.
-
SR Issue: The SR if the change fixes/implements an issue/enhancement on bugs.swift.org.
-
Risk: What is the (specific) risk to the release for taking this change?
-
Testing: What specific testing has been done or needs to be done to further validate any impact of this change?
-
Reviewer: One or more code owners for the impacted components should review the change. Technical review can be delegated by a code owner or otherwise requested as deemed appropriate or useful.
All change going into the swift-4.1-branch
(outside changes being merged in automatically from master
) must go through pull requests that are accepted by the corresponding release manager.