Skip to content

Commit

Permalink
Prepare to release 1.2.2 (#461)
Browse files Browse the repository at this point in the history
* Prepare to release 1.2.2

* Exclude old ghc on ci
  • Loading branch information
vrom911 authored Oct 13, 2024
1 parent c4f4a90 commit 38b54f9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,14 @@ jobs:
- '9.0.2'
- '9.2.8'
- '9.4.7'
- '9.6.3'
- '9.8.1'
- '9.6.6'
- '9.8.2'
- '9.10.1'
exclude:
- os: macOS-latest
ghc: 9.6.3
ghc: 9.8.2
- os: macOS-latest
ghc: 9.6.6
- os: macOS-latest
ghc: 9.4.7
- os: macOS-latest
Expand All @@ -47,7 +50,9 @@ jobs:
ghc: 8.4.4

- os: windows-latest
ghc: 9.6.3
ghc: 9.8.2
- os: windows-latest
ghc: 9.6.6
- os: windows-latest
ghc: 9.4.7
- os: windows-latest
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
`relude` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].

## 1.2.2.0 – Oct 13, 2024

- Support GHC-9.10 & GHC-9.8.
- Allow hashable-1.5

## 1.2.1.0 – Oct 4, 2023

- [#439](https://github.com/kowainik/relude/issues/439):
Expand Down
12 changes: 9 additions & 3 deletions relude.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: relude
version: 1.2.1.0
version: 1.2.2.0
synopsis: Safe, performant, user-friendly and lightweight Haskell Standard Library
description:
@__relude__@ is an alternative prelude library. If you find the default
Expand Down Expand Up @@ -98,7 +98,9 @@ tested-with: GHC == 8.4.4
GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.7
GHC == 9.6.3
GHC == 9.6.6
GHC == 9.8.2
GHC == 9.10.1


source-repository head
Expand Down Expand Up @@ -126,9 +128,13 @@ common common-options
if impl(ghc >= 9.2)
ghc-options: -Wredundant-bang-patterns
-Woperator-whitespace
if impl(ghc >= 9.4 && < 9.10)
ghc-options: -Wforall-identifier
if impl(ghc >= 9.4)
ghc-options: -Wredundant-strictness-flags
-Wforall-identifier
if impl(ghc >= 9.8)
ghc-options: -Wterm-variable-capture
-Winconsistent-flags


default-language: Haskell2010
Expand Down

0 comments on commit 38b54f9

Please sign in to comment.