Skip to content

Commit

Permalink
Build on ghc-9.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-k committed Nov 4, 2023
1 parent ca5e578 commit 71bdef6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 3 additions & 1 deletion mig/mig.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: mig
version: 0.2.0.0
version: 0.2.0.1
synopsis: Build lightweight and composable servers
description: The Core for the mig server library.
With library mig we can build lightweight and composable servers.
Expand Down Expand Up @@ -68,6 +68,7 @@ library
DerivingStrategies
StrictData
AllowAmbiguousTypes
DataKinds
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -Wunused-packages
build-depends:
aeson
Expand Down Expand Up @@ -114,6 +115,7 @@ test-suite mig-test
DerivingStrategies
StrictData
AllowAmbiguousTypes
DataKinds
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -Wunused-packages -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
Expand Down
3 changes: 2 additions & 1 deletion mig/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mig
version: 0.2.0.0
version: 0.2.0.1
github: "anton-k/mig"
license: BSD3
author: "Anton Kholomiov"
Expand Down Expand Up @@ -40,6 +40,7 @@ default-extensions:
- DerivingStrategies
- StrictData
- AllowAmbiguousTypes
- DataKinds

language: GHC2021

Expand Down
2 changes: 0 additions & 2 deletions mig/test/Test/Server/Counter.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
{-# LANGUAGE DataKinds #-}

-- | Test case for ReaderT based server
module Test.Server.Counter (spec) where

Expand Down
1 change: 0 additions & 1 deletion mig/test/Test/Server/RouteArgs.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveAnyClass #-}

-- | Tests for various inputs for requests
Expand Down
5 changes: 3 additions & 2 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
resolver:
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/21/5.yaml
resolver: nightly-2023-11-04 # ghc-9.6.3
# lts-21.19 # ghc-9.4.7
# lts-20.0 # ghc-9.2.5

packages:
- mig
Expand Down

0 comments on commit 71bdef6

Please sign in to comment.