Skip to content

Commit 75de2a7

Browse files
committed
Merge branch 'ghcup-0.1.19.2'
2 parents 3d7e07c + ea6c8d3 commit 75de2a7

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Revision history for ghcup
22

3-
## 0.1.19.2 -- ????-??-??
3+
## 0.1.19.2 -- 2023-2-24
44

55
* Follow-up fix for JFS/ReiserFS and other filesystem that don't support `d_type`, fixes [#787](https://github.com/haskell/ghcup-hs/issues/787)
66
- the previous release had a bug that invalidated that broke it
77
* Implement 'latest-prerelease' tag wrt [#788](https://github.com/haskell/ghcup-hs/issues/788)
8+
* Fix 'Could not parse version of stray directory.DS_Store' warnings on macOs wrt [#797](https://github.com/haskell/ghcup-hs/issues/797)
89

910
## 0.1.19.1 -- 2023-2-19
1011

scripts/bootstrap/bootstrap-haskell

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
plat="$(uname -s)"
3030
arch=$(uname -m)
31-
ghver="0.1.19.1"
31+
ghver="0.1.19.2"
3232
: "${GHCUP_BASE_URL:=https://downloads.haskell.org/~ghcup}"
3333

3434
export GHCUP_SKIP_UPDATE_CHECK=yes

scripts/releasing/pull_release_artifacts.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ shopt -s extglob
77

88
RELEASE=$1
99
SIGNER=$2
10+
TAG=${RELEASE/v/}
1011

1112
echo "RELEASE: $RELEASE"
1213
echo "SIGNER: $SIGNER"
@@ -19,18 +20,18 @@ done
1920

2021
mkdir -p "gh-release-artifacts/${RELEASE}"
2122

22-
git archive --format=tar.gz -o "gh-release-artifacts/${RELEASE}/ghcup-${RELEASE}-src.tar.gz" --prefix="ghcup-${RELEASE}/" HEAD
23+
git archive --format=tar.gz -o "gh-release-artifacts/${RELEASE}/ghcup-${TAG}-src.tar.gz" --prefix="ghcup-${TAG}/" HEAD
2324

2425
cd "gh-release-artifacts/${RELEASE}"
2526

2627
# github
2728
gh release download "$RELEASE"
2829

2930
# cirrus
30-
curl -L -o "x86_64-portbld-freebsd-ghcup-${RELEASE}" \
31+
curl -L -o "x86_64-portbld-freebsd-ghcup-${TAG}" \
3132
"https://api.cirrus-ci.com/v1/artifact/github/haskell/ghcup-hs/build/binaries/out/x86_64-portbld-freebsd-ghcup-${RELEASE}?branch=${RELEASE}"
3233

3334
sha256sum ./*-ghcup-* > SHA256SUMS
3435
gpg --detach-sign -u "${SIGNER}" SHA256SUMS
3536

36-
gh release upload "$RELEASE" "ghcup-${RELEASE}-src.tar.gz" "x86_64-portbld-freebsd-ghcup-${RELEASE}" SHA256SUMS SHA256SUMS.sig
37+
gh release upload "$RELEASE" "ghcup-${TAG}-src.tar.gz" "x86_64-portbld-freebsd-ghcup-${TAG}" SHA256SUMS SHA256SUMS.sig

0 commit comments

Comments
 (0)