Closed straight-shoota closed 5 months ago
@straight-shoota Seems no brew PR was created for 1.12.2
.
Yeah, this is really stupid: The brew updates are completely automated via BrewTestBot, but it skips updates when there's an open PR concerning the respective formula. https://github.com/Homebrew/homebrew-core/pull/165986 is pending for months now and I have to close it for the updater to do its work, and re-open again afterwards 🤦
Release preparation
crystal:scripts/github-changelog.cr
is:pr is:merged sort:updated-desc no:milestone
).is:pr is:merged sort:updated-desc no:label milestone:${VERSION}
).CHANGELOG.md
andVERSION
.Release process
Source release
crystal_branch
.../distribution-scripts/processes/scripts/make-crystal-release.sh
(run fromcrystallang/crystal@$VERSION
work tree). This performs these steps:<M.m.p>
pattern as versiongit tag -s -a -m $VERSION $VERSION
git push --tags
Binary releases
URL_TO_CIRCLECI_ARTIFACT
grab the URL of any of the build artifacts in circleCI (doesn't matter which).../distribution-scripts/processes/scripts/publish-crystal-packages-on-github.sh $URL_TO_CIRCLECI_ARTIFACT
(run fromcrystallang/crystal@$VERSION
work tree)crystal-*-darwin-*.tar.gz
crystal-*-linux-*.tar.gz
crystal-*.pkg
crystal-*-docs.tar.gz
crystal-release.zip
->crystal-$VERSION-windows-x86_64-msvc-unsupported.zip
crystal-installer.zip
-> unzip ->crystal-$VERSION-windows-x86_64-msvc-unsupported.exe
./packages
export OBS_USER=
export OBS_PASSWORD=
crystal${VERSION%.*}
package:./obs-release.sh devel:languages:crystal crystal${VERSION%.*} $VERSION
open https://build.opensuse.org/project/show/home:$OBS_USER:branches:devel:langauges:crystal/crystal
OBS_PROJECT=devel:languages:crystal bats test
latest
docker imageslatest
tags:./docker/apply-latest-tags.sh ${VERSION}
snapcore/snapcraft
for running the following commands)docker run --pull=always --rm -it snapcore/snapcraft
snapcraft login
snapcraft status crystal
snapcraft release crystal <revision-number> beta
snapcraft release crystal <revision-number> stable
Publish documentation for the release
AWS_ACCESS_KEY_ID
andAWS_SECRET_ACCESS_KEY
env variables definedmake -C docs publish_docs dist-redirect_latest CRYSTAL_VERSION=${VERSION}
to publish docs toapi/${VERSION}
and apply redirect fromapi/latest
toapi/${VERSION}
Release announcements
Post-release
master
branch to use released version:crystal:scripts/release-update.sh ${VERSION}
.circleci/config.yml
bin/ci
prepare_build
on_osx download package and folder.github/workflows/*.yml
to point to docker imageshell.nix
latestCrystalBinary
usingnix-prefetch-url --unpack <url>
test-ecosystem:scripts/release-update.sh ${VERSION}
release/${VERSION%.*}
branch intomaster
(if the two have diverged)git switch master && git pull && git merge release/${VERSION%.*}; git checkout master src/VERSION && git add src/VERSION && git commit
git push
(GitHub branch protection rules normally prevent direct pushes tomaster
. This needs to be deactivated for this purpose, which can be on a per-user basis.)