When creating a release milestone, you should send meeting invites to maintainers to book the release day and the previous day. This is to make sure they have enough time to work on the release.
The following release procedure should be started on the previous day of the target release day. This is to make sure we have enough buffer time to publish the release on the target day.
Before starting the following release procedure, open an issue and list all those steps as to-do tasks. Check the task when you finish one. This is to help track the release preparation work.
Note: Step 2, 3 and 4 can be done in parallel.
- Create a branch named
release-<Release Tag>in our private repository. All release related changes should happen in this branch. - Prepare packages
- Build release packages.
- Sign the MSI packages and DEB/RPM packages.
- Install and verify the packages.
- Update documentation, scripts and Dockerfiles
- Summarize the changelog for the release. It should be reviewed by PM(s) to make it more user-friendly.
- Update CHANGELOG.md with the finalized changelog draft.
- Update other documents and scripts to use the new package names and links.
- Verify the release Dockerfiles.
- Create NuGet packages and publish them to powershell-core feed.
- Create the release tag and push the tag to
PowerShell/PowerShellrepository. - Create the draft and publish the release in GitHub.
- Merge the
release-<Release Tag>branch tomasterinpowershell/powershelland delete therelease-<Release Tag>branch. - Publish Linux packages to Microsoft YUM/APT repositories.
- Update the homebrew formula for the macOS package. This task usually will be taken care of by the community, so we can wait for one day or two and see if the homebrew formula has already been updated, and only do the update if it hasn't.
Note: Linux and Windows packages are taken care of by our release build pipeline in VSTS, while the macOS package needs to be built separately on a macOS.
The release build should be started based on the release branch.
The release Git tag won't be created until all release preparation tasks are done,
so the to-be-used release tag should be passed to the release build as an argument.
When creating the packages, please ensure that the file path does not contain user names. That is, clone to
/PowerShellon Unix, andC:\PowerShellfor Windows. The debug symbols include the absolute path to the sources when built, so it should appear/PowerShell/src/powershell/System.Management.Automation, not/home/username/src/PowerShell/....
The tools/packaging module contains a Start-PSPackage function to build packages.
It requires that PowerShell Core has been built via Start-PSBuild from the build.psm1 module.
The Start-PSPackage function delegates to New-MSIPackage which creates a Windows Installer Package of PowerShell.
The packages must be published in release mode,
so make sure -Configuration Release is specified when running Start-PSBuild.
It uses the Windows Installer XML Toolset (WiX) to generate a MSI package,
which copies the output of the published PowerShell files to a version-specific folder in Program Files,
and installs a shortcut in the Start Menu.
It can be uninstalled through Programs and Features.
Note that PowerShell is always self-contained, thus using it does not require installing it.
The output of Start-PSBuild includes a powershell.exe executable which can simply be launched.
The Start-PSPackage function delegates to New-UnixPackage.
For Linux (Debian-based distributions), it relies on the Effing Package Management project, which makes building packages a breeze.
For macOS, it uses native packaging tools (pkgbuild and productbuild) from Xcode Command Line Tools,
eliminating the need for Ruby or fpm.
For Linux (Red Hat-based distributions), it uses rpmbuild directly.
The PowerShell man-page is generated from the Markdown-like file
assets/pwsh.1.ronn using Ronn.
The function Start-PSBootstrap -Package will install these tools.
To modify any property of the packages, edit the New-UnixPackage function.
Please also refer to the function for details on the package properties
(such as the description, maintainer, vendor, URL,
license, category, dependencies, and file layout).
Note that the only configuration on Linux and macOS is
Linux, which is release (i.e. not debug) configuration.
To support side-by-side Unix packages, we use the following design:
We will maintain a powershell package
which owns the /usr/bin/pwsh symlink,
is the latest version, and is upgradeable.
This is the only package named powershell
and similarly is the only package owning any symlinks,
executables, or man-pages named powershell.
Until we have a package repository,
this package will contain actual PowerShell bits
(i.e. it is not a meta-package).
These bits are installed to /opt/microsoft/powershell/6.0.0-alpha.8/,
where the version will change with each update
(and is the prerelease version).
On macOS, the prefix is /usr/local,
instead of /opt/microsoft because it is derived from BSD.
When we have access to package repositories where dependencies can be properly resolved, this
powershellpackage can become a meta-package which auto-installs the latest package, and so only owns the symlink.
For explicitly versioned packages, say for PowerShell 6.0,
we will maintain separate packages named in the form powershell6.0,
which owns the binary powershell6.0, the symlink powershell6.0,
the man-page powershell6.0,
and is installed to /opt/microsoft/powershell/6.0/.
Specifically this package owns nothing named powershell,
as only the powershell package owns those files.
This package is upgradeable, but should only be updated with hot-fixes.
This is a necessary consequence of Unix package managers,
as files among packages cannot conflict.
From a user-experience perspective,
if the user requires a specific version of PowerShell,
they should not be required to use an absolute path,
and instead should be given a binary with the version in the name.
This pattern is followed by many other languages
(Python being the most obvious example).
This same pattern can be followed for versions 6.1, 7.0, etc.,
and can be used for patch version (e.g. 6.0.1).
Use Start-PSPackage -Name powershell6.0 to generate
the versioned powershell6.0 package.
Without -Name specified, the primary powershell
package will instead be created.
On macOS or a supported Linux distro, run the following commands:
# Install dependencies
Start-PSBootstrap -Package
# Build for v6.0.0-beta.1 release
Start-PSBuild -Clean -Crossgen -PSModuleRestore -ReleaseTag v6.0.0-beta.1
# Create package for v6.0.0-beta.1 release
Start-PSPackage -ReleaseTag v6.0.0-beta.1On Windows, the -Runtime parameter should be specified for Start-PSBuild to indicate what version of OS the build is targeting.
# Install dependencies
Start-PSBootstrap -Package
# Build for v6.0.0-beta.1 release targeting Windows universal package, set -Runtime to win7-x64
Start-PSBuild -Clean -CrossGen -PSModuleRestore -Runtime win7-x64 -Configuration Release -ReleaseTag v6.0.0-beta.1# Create packages for v6.0.0-beta.1 release targeting Windows universal package.
# 'win7-x64' / 'win7-x86' should be used for -WindowsRuntime.
Start-PSPackage -Type msi -ReleaseTag v6.0.0-beta.1 -WindowsRuntime 'win7-x64'
Start-PSPackage -Type zip -ReleaseTag v6.0.0-beta.1 -WindowsRuntime 'win7-x64'The NuGet packages for hosting PowerShell for Windows and non-Windows are being built-in our release build pipeline. The assemblies from the individual Windows and Linux builds are consumed and packed into NuGet packages. These are then released to powershell-core feed.
PowerShell releases use Semantic Versioning.
Until we hit 6.0, each sprint results in a bump to the build number,
so v6.0.0-alpha.7 goes to v6.0.0-alpha.8.
When a particular commit is chosen as a release,
we create an annotated tag that names the release.
An annotated tag has a message (like a commit),
and is not the same as a lightweight tag.
Create one with git tag -a v6.0.0-alpha.7 -m <message-here>,
and use the release changelogs as the message.
Our convention is to prepend the v to the semantic version.
The summary (first line) of the annotated tag message should be the full release title,
e.g. 'v6.0.0-alpha.7 release of PowerShellCore'.
When the annotated tag is finalized, push it with git push --tags.
GitHub will see the tag and present it as an option when creating a new release.
Start the release, use the annotated tag's summary as the title,
and save the release as a draft while you upload the binary packages.
After the release, update homebrew formula. You need macOS to do it.
There are 2 homebrew formulas: main and preview.
Update it on stable releases.
- Wait for a PR to show up in https://github.com/powershell/homebrew-tap, review and merge it.
Update it on preview releases.
- Wait for a PR to show up in https://github.com/powershell/homebrew-tap, review and merge it.