mirror of
https://github.com/Holmusk/elm-street.git
synced 2024-11-20 18:52:47 +03:00
Relax version bounds of warp, text and filepath (#141)
This commit is contained in:
parent
58bc35a484
commit
d8fc99b8be
4
.github/workflows/haskell-ci.yml
vendored
4
.github/workflows/haskell-ci.yml
vendored
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -1 +1 @@
|
||||
resolver: lts-22.4
|
||||
resolver: lts-22.22
|
||||
|
Loading…
Reference in New Issue
Block a user