diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7fdd45a2..b397430e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,11 +29,11 @@ jobs: - run: make build - run: make test - - if: startsWith(github.ref, 'refs/tags') && startsWith(matrix.ghc, '9.8') + - if: startsWith(github.ref, 'refs/tags') && startsWith(matrix.ghc, '9.10') run: make artifact - uses: actions/upload-artifact@v4 - if: startsWith(github.ref, 'refs/tags') && startsWith(matrix.ghc, '9.8') + if: startsWith(github.ref, 'refs/tags') && startsWith(matrix.ghc, '9.10') with: path: artifacts/* name: artifacts-${{ runner.os }} diff --git a/CHANGELOG b/CHANGELOG index 9ca8c8de..f654696b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ # CHANGELOG +- 0.15.1.0 (2025-04-13) + * #491 Support GHC 9.12 (By GuillaumedeVolpiano) + - 0.15.0.1 (2025-04-13) * #493 Support Cabal 3.12 again (By GuillaumedeVolpiano) diff --git a/stylish-haskell.cabal b/stylish-haskell.cabal index ff75814a..266f1b8c 100644 --- a/stylish-haskell.cabal +++ b/stylish-haskell.cabal @@ -1,6 +1,6 @@ Cabal-version: 2.4 Name: stylish-haskell -Version: 0.15.0.1 +Version: 0.15.1.0 Synopsis: Haskell code prettifier Homepage: https://github.com/haskell/stylish-haskell License: BSD-3-Clause