aws-ec2 0.3.5 → 0.3.6
raw patch · 2 files changed
+4/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Aws.Ec2.Types: instance GHC.Classes.Eq Aws.Ec2.Types.IpProtocol
+ Aws.Ec2.Types: instance GHC.Classes.Eq Aws.Ec2.Types.SgPermission
Files
- aws-ec2.cabal +2/−2
- src/Aws/Ec2/Types.hs +2/−1
aws-ec2.cabal view
@@ -1,5 +1,5 @@ name: aws-ec2-version: 0.3.5+version: 0.3.6 cabal-version: >=1.10 build-type: Simple license: BSD3@@ -16,7 +16,7 @@ source-repository this type: git location: https://github.com/memcachier/aws-ec2.git- tag: 0.3.5+ tag: 0.3.6 source-repository head type: git
src/Aws/Ec2/Types.hs view
@@ -75,7 +75,7 @@ data SgPermission = IpPermission IpProtocol (Maybe Int) (Maybe Int) [CidrIp] | SgPermission IpProtocol (Maybe Int) (Maybe Int) [SgGroupId]- deriving (Show)+ deriving (Eq, Show) data Region = Region { regionEndpoint :: T.Text@@ -423,6 +423,7 @@ show (IOPSSD _) = "io1" data IpProtocol = TCP | UDP | ICMP | Proto Int | All+ deriving Eq instance Show IpProtocol where show TCP = "tcp" -- 6