Relax version bounds of warp, text and filepath (#141)

This commit is contained in:
Jan Hrcek 2024-05-16 08:24:53 +02:00 committed by GitHub
parent 58bc35a484
commit d8fc99b8be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 14 additions and 9 deletions

View File

@ -17,7 +17,7 @@ jobs:
- 9.0.2
- 9.2.8
- 9.4.8
- 9.6.4
- 9.6.5
- 9.8.2
include:
# Test only with latest GHC on windows and macOS
@ -64,7 +64,7 @@ jobs:
strategy:
matrix:
stack: [2.15.5]
ghc: [9.6.4]
ghc: [9.6.5]
steps:
- uses: actions/checkout@v4

View File

@ -3,12 +3,17 @@
`elm-street` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].
## 0.2.2.1 - May 16, 2024
* Relax version bounds of warp, text and filepath
## 0.2.2.0 - Jan 4, 2024
* Version bumps to allow building with GHC 9.8.1
* Remove GHC 8.10.7 from CI
## 0.2.1.1 - Aug 3, 2023
* Add missing extra-source-files: test/golden/oneType.json to cabal
## 0.2.1.0 - Aug 3, 2023

View File

@ -1,6 +1,6 @@
cabal-version: 2.4
name: elm-street
version: 0.2.2.0
version: 0.2.2.1
synopsis: Crossing the road between Haskell and Elm
description:
`Elm-street` allows you to generate automatically derived from Haskell types
@ -22,8 +22,8 @@ extra-source-files: test/golden/oneType.json
tested-with: GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.8
GHC == 9.6.3
GHC == 9.8.1
GHC == 9.6.5
GHC == 9.8.2
source-repository head
type: git
@ -75,9 +75,9 @@ library
build-depends: aeson >= 1.3
, directory ^>= 1.3
, filepath ^>= 1.4
, filepath >= 1.4 && < 1.6
, prettyprinter >= 1.2.1 && < 1.8
, text >= 1.2 && <= 2.1
, text >= 1.2 && <= 3.0
, time
library types
@ -115,7 +115,7 @@ executable run-backend
, servant-server >= 0.14
, types
, wai ^>= 3.2
, warp < 3.4
, warp < 3.5
ghc-options: -threaded
-rtsopts

View File

@ -1 +1 @@
resolver: lts-22.4
resolver: lts-22.22