Skip to content

Commit 75e5f89

Browse files
committed
Prepare for 1.1.6
1 parent 7985cc0 commit 75e5f89

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
next
1+
1.1.6
22
-----
33

44
* Fixes:

servant-swagger.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,5 @@ test-suite spec
124124
, time
125125
other-modules:
126126
Servant.SwaggerSpec
127-
Data.Aeson.QQ.Simple
127+
Data.Aeson.QQ.Simple2
128128
default-language: Haskell2010

test/Data/Aeson/QQ/Simple.hs renamed to test/Data/Aeson/QQ/Simple2.hs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
-- | Like "Data.Aeson.QQ" but without interpolation.
2-
module Data.Aeson.QQ.Simple (aesonQQ) where
2+
module Data.Aeson.QQ.Simple2 (aesonQQ) where
33

44
import Data.Aeson (eitherDecode, Value)
55
import Data.ByteString.Lazy.UTF8 as UTF8
6-
import qualified Data.Text as T
76
import Language.Haskell.TH
87
import Language.Haskell.TH.Quote
98
import Language.Haskell.TH.Syntax (Lift (..))

test/Servant/SwaggerSpec.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@
55
{-# LANGUAGE OverloadedStrings #-}
66
{-# LANGUAGE QuasiQuotes #-}
77
{-# LANGUAGE TypeOperators #-}
8+
{-# LANGUAGE PackageImports #-}
89
#if __GLASGOW_HASKELL__ == 708
910
{-# OPTIONS_GHC -fcontext-stack=31 #-}
1011
#endif
1112
module Servant.SwaggerSpec where
1213

1314
import Control.Lens
1415
import Data.Aeson (ToJSON(toJSON), Value, genericToJSON)
15-
import Data.Aeson.QQ.Simple
16+
import Data.Aeson.QQ.Simple2 -- aeson will have the Simple module soon
1617
import qualified Data.Aeson.Types as JSON
1718
import Data.Char (toLower)
1819
import Data.Int (Int64)

0 commit comments

Comments
 (0)