File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11# Release notes
22
3+ ## New in git-machete 2.15.1
4+
5+ - fixed: release process for Homebrew and NixOS/nixpkgs
6+
37## New in git-machete 2.15.0
48
59- added: ` addable ` category of ` list `
1418- improved: ` discover ` limited to ca. 10 most recently checked out branches by default
1519- improved: ` discover ` skips merged branches for which no child branches have been inferred
1620- improved: release process has been simplified
17- - improved: simplify the release process
1821
1922## New in git-machete 2.14.0
2023
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- # Downtime of the linked the websites shouldn't block a release or a master build.
4- [[ $TRAVIS_TAG ]] && exit 0
3+ # Downtime of the linked websites shouldn't block a release.
54[[ $TRAVIS_BRANCH = master ]] && exit 0
65
76set -e -o pipefail -u
Original file line number Diff line number Diff line change @@ -7,8 +7,7 @@ cd ../homebrew-git-machete/
77
88git config user.email " travis@travis-ci.org"
99git config user.name " Travis CI"
10- [[ -n $TRAVIS_TAG ]]
11- VERSION=${TRAVIS_TAG# v}
10+ VERSION=$( grep ' __version__ = ' git_machete/__init__.py | cut -d\' -f2)
1211sha256=$( curl -s https://pypi.org/pypi/git-machete/$VERSION /json | jq --raw-output ' .urls | map(select(.packagetype == "sdist")) | .[0].digests.sha256' )
1312sed -i " s/git-machete-.*\.tar\.gz/git-machete-$VERSION .tar.gz/" git-machete.rb
1413sed -i " s/^ sha256 .*/ sha256 \" $sha256 \" /" git-machete.rb
Original file line number Diff line number Diff line change @@ -6,8 +6,7 @@ DIRECTORY_HASH=$(git rev-parse HEAD:ci/nixpkgs-pr)
66export DIRECTORY_HASH
77cd ci/nixpkgs-pr/
88
9- [[ -n $TRAVIS_TAG ]]
10- VERSION=${TRAVIS_TAG# v}
9+ VERSION=$( grep ' __version__ = ' git_machete/__init__.py | cut -d\' -f2)
1110export VERSION
1211
1312# If the image corresponding to the current state of ci/nixpkgs-pr/ is missing, build it and push to Docker Hub.
Original file line number Diff line number Diff line change 1- __version__ = '2.15.0 '
1+ __version__ = '2.15.1 '
You can’t perform that action at this time.
0 commit comments