Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GHC 8.10 support #210

Merged
merged 3 commits into from
Apr 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/Data/Swagger/Declare.hs
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,6 @@ instance MonadDeclare d m => MonadDeclare d (IdentityT m) where
declare = lift . declare
look = lift look

instance MonadDeclare d m => MonadDeclare d (ListT m) where
declare = lift . declare
look = lift look

instance MonadDeclare d m => MonadDeclare d (MaybeT m) where
declare = lift . declare
look = lift look
Expand Down
10 changes: 5 additions & 5 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
resolver: lts-14.3
resolver: lts-15.1
packages:
- '.'
extra-deps:
- optics-core-0.2
- optics-th-0.2
- optics-extra-0.2
- optics-core-0.3
- optics-th-0.3
- optics-extra-0.3
- indexed-profunctors-0.1
- insert-ordered-containers-0.2.3
- insert-ordered-containers-0.2.3.1
11 changes: 6 additions & 5 deletions swagger2.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ tested-with:
|| ==8.4.4
|| ==8.6.5
|| ==8.8.1
|| ==8.10.1

custom-setup
setup-depends:
Expand Down Expand Up @@ -60,10 +61,10 @@ library

-- GHC boot libraries
build-depends:
base >=4.9 && <4.14
base >=4.9 && <4.15
, bytestring >=0.10.4.0 && <0.11
, containers >=0.5.5.1 && <0.7
, template-haskell >=2.9.0.0 && <2.16
, template-haskell >=2.9.0.0 && <2.17
, time >=1.4.2 && <1.10
, transformers >=0.3.0.0 && <0.6

Expand All @@ -82,10 +83,10 @@ library
, hashable >=1.2.7.0 && <1.4
, http-media >=0.7.1.2 && <0.9
, insert-ordered-containers >=0.2.3 && <0.3
, lens >=4.16.1 && <4.19
, lens >=4.16.1 && <4.20
, network >=2.6.3.5 && <3.2
, optics-core >=0.2 && <0.3
, optics-th >=0.2 && <0.3
, optics-core >=0.2 && <0.4
, optics-th >=0.2 && <0.4
, scientific >=0.3.6.2 && <0.4
, transformers-compat >=0.3 && <0.7
, unordered-containers >=0.2.9.0 && <0.3
Expand Down