stratosphere 0.2.1 → 0.2.2
raw patch · 4 files changed
+13/−5 lines, 4 files
Files
- CHANGELOG.md +4/−0
- library/Stratosphere/Check.hs +4/−3
- stack.yaml +4/−1
- stratosphere.cabal +1/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Change Log +## 0.2.2++* Fixed a test suite failure caused by bleeding edge HLint version.+ ## 0.2.1 * Added Dynamo DB table resources (@ababkin)
library/Stratosphere/Check.hs view
@@ -4,8 +4,8 @@ -- Stability: Experimental module Stratosphere.Check- ( duplicateProperties- ) where+ ( duplicateProperties+ ) where import Data.Hashable (Hashable) import qualified Data.HashMap.Strict as HM@@ -14,7 +14,8 @@ import Stratosphere.Resources (resourceResName, unResources) import Stratosphere.Template (Template, templateResources) -data DuplicateProperty = DuplicateProperty T.Text deriving Show+newtype DuplicateProperty = DuplicateProperty T.Text+ deriving (Show, Eq) duplicateProperties :: Template -> [DuplicateProperty] duplicateProperties =
stack.yaml view
@@ -1,3 +1,6 @@-resolver: nightly-2016-09-20+resolver: nightly-2016-11-23 # Make sure to remove hlint from extra-deps if this changes packages: - '.'+extra-deps:+ # TODO: Remove this once hlint-1.9.38 is in latest nightly+ - hlint-1.9.38
stratosphere.cabal view
@@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: stratosphere-version: 0.2.1+version: 0.2.2 synopsis: EDSL for AWS CloudFormation description: EDSL for AWS CloudFormation category: AWS, Cloud