stratosphere 0.19.0 → 0.19.1
raw patch · 5 files changed
+12/−5 lines, 5 files
Files
- CHANGELOG.md +4/−0
- library-gen/Stratosphere/Resources.hs +2/−1
- library/Stratosphere/Outputs.hs +2/−1
- library/Stratosphere/Parameters.hs +2/−1
- stratosphere.cabal +2/−2
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Change Log +## 0.19.1++* Add compatibility with GHC 8.4.1+ ## 0.19.0 * Fix `Equals` function requiring `Val Bool` arguments instead of `Val a`
library-gen/Stratosphere/Resources.hs view
@@ -42,6 +42,7 @@ import Data.Aeson import Data.Aeson.Types import Data.Maybe (catMaybes)+import Data.Semigroup (Semigroup) import qualified Data.Text as T import GHC.Exts (IsList(..)) import GHC.Generics (Generic)@@ -1927,7 +1928,7 @@ -- | Wrapper around a list of 'Resources's to we can modify the aeson -- instances. newtype Resources = Resources { unResources :: [Resource] }- deriving (Show, Eq, Monoid)+ deriving (Show, Eq, Semigroup, Monoid) instance IsList Resources where type Item Resources = Resource
library/Stratosphere/Outputs.hs view
@@ -32,6 +32,7 @@ import Data.Aeson import Data.Aeson.Types (Parser) import Data.Maybe (catMaybes)+import Data.Semigroup (Semigroup) import Data.Text (Text) import GHC.Exts (IsList(..)) @@ -106,7 +107,7 @@ -- | Wrapper around a list of 'Output's to we can modify the aeson instances. newtype Outputs = Outputs { unOutputs :: [Output] }- deriving (Show, Eq, Monoid)+ deriving (Show, Eq, Semigroup, Monoid) instance IsList Outputs where type Item Outputs = Output
library/Stratosphere/Parameters.hs view
@@ -25,6 +25,7 @@ import Data.Aeson import Data.Aeson.Types (Parser) import Data.Maybe (catMaybes)+import Data.Semigroup (Semigroup) import qualified Data.Text as T import GHC.Exts (IsList(..)) @@ -127,7 +128,7 @@ -- | Wrapper around a list of 'Parameters's to we can modify the aeson -- instances. newtype Parameters = Parameters { unParameters :: [Parameter] }- deriving (Show, Eq, Monoid)+ deriving (Show, Eq, Semigroup, Monoid) instance IsList Parameters where type Item Parameters = Parameter
stratosphere.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 6ea38dbad049185fb83defe79936d44b9b198398650dea1e93e02df23c5dc45f+-- hash: 8086c2442cf5608aaa960050cc8b2978b698bb94f68cc293d256602a13ac1289 name: stratosphere-version: 0.19.0+version: 0.19.1 synopsis: EDSL for AWS CloudFormation description: EDSL for AWS CloudFormation category: AWS, Cloud