From 1a257b36cf377b1f8de318af22710c9f9b71c418 Mon Sep 17 00:00:00 2001 From: Harendra Kumar Date: Sat, 16 Dec 2023 03:44:42 +0530 Subject: [PATCH] Update version and git tags in CI configs, changelog --- .circleci/config.yml | 4 ++-- .github/workflows/packcheck.yml | 4 ++-- Changelog.md | 12 ++++++------ MAINTAINING.md | 1 - appveyor.yml | 2 +- 5 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 23a335d..a2c5675 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,4 +1,4 @@ -# packcheck-0.6.0 +# packcheck-0.7.0 # You can use any of the options supported by packcheck as environment # variables here. See https://github.com/composewell/packcheck for all # options and their explanation. @@ -63,7 +63,7 @@ env: &env # If you have not committed packcheck.sh in your repo at PACKCHECK # then it is automatically pulled from this URL. PACKCHECK_GITHUB_URL: "https://raw.githubusercontent.com/composewell/packcheck" - PACKCHECK_GITHUB_COMMIT: "3db46664f5eeadcd6fbe18b0ff6e9a31c41e4fbe" + PACKCHECK_GITHUB_COMMIT: "v0.7.0" # ubuntu seems to have better support than debian on CI systems docker: diff --git a/.github/workflows/packcheck.yml b/.github/workflows/packcheck.yml index 9f8561f..d665029 100644 --- a/.github/workflows/packcheck.yml +++ b/.github/workflows/packcheck.yml @@ -1,4 +1,4 @@ -# packcheck-0.6.0 +# packcheck-0.7.0 # You can use any of the options supported by packcheck as environment # variables here. See https://github.com/composewell/packcheck for all # options and their explanation. @@ -85,7 +85,7 @@ jobs: # If you have not committed packcheck.sh in your repo at PACKCHECK # then it is automatically pulled from this URL. PACKCHECK_GITHUB_URL: "https://raw.githubusercontent.com/composewell/packcheck" - PACKCHECK_GITHUB_COMMIT: "3db46664f5eeadcd6fbe18b0ff6e9a31c41e4fbe" + PACKCHECK_GITHUB_COMMIT: "v0.7.0" # ------------------------------------------------------------------------ # Final build variables diff --git a/Changelog.md b/Changelog.md index af237c4..16e9354 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,8 @@ -## 0.7.0 (Unreleased) +## 0.7.0 (Dec 2023) + +### Enhancements +* Now supports using ghcup to install ghc automatically if GHCUPVER env var is + specified. ### Breaking Changes @@ -10,15 +14,11 @@ * Removed GHCJS, coveralls support * Removed `CABAL_HACKAGE_MIRROR` env var -### Enhancements -* Now supports using ghcup to install ghc automatically if GHCUPVER env var is - specified. - ## 0.6.0 ### Enhancements -* CABAL_DISABLE_DEPS env var to disable dependencies install by cabal. This can +* `CABAL_DISABLE_DEPS` env var to disable dependencies install by cabal. This can be useful when we have dependencies already installed e.g. in a nix shell. * Add support for github CI * Add packcheck-remote.sh, a wrapper over packcheck that allows you diff --git a/MAINTAINING.md b/MAINTAINING.md index 52eba56..f0f8fc2 100644 --- a/MAINTAINING.md +++ b/MAINTAINING.md @@ -15,7 +15,6 @@ commit in the PR. * Test removing caching * Update the version number in config files * Update version number in the script -* Update `$HLINT_VERSION` to the latest hlint version in the script * Update Changelog accordingly ## Post release tasks diff --git a/appveyor.yml b/appveyor.yml index 43de009..173df7b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -62,7 +62,7 @@ environment: # If you have not committed packcheck.sh in your repo at PACKCHECK_LOCAL_PATH # then it is automatically pulled from this URL. PACKCHECK_GITHUB_URL: "https://raw.githubusercontent.com/composewell/packcheck" - PACKCHECK_GITHUB_COMMIT: "3db46664f5eeadcd6fbe18b0ff6e9a31c41e4fbe" + PACKCHECK_GITHUB_COMMIT: "v0.7.0" # Override the temp directory to avoid sed escaping issues # See https://github.com/haskell/cabal/issues/5386