packages feed

editable 1.0.0.0 → 1.0.0.1

raw patch · 1 files changed

+10/−12 lines, 1 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

editable.cabal view
@@ -1,5 +1,5 @@ name:                editable-version:             1.0.0.0+version:             1.0.0.1 synopsis:            Interactive editors for Generics description:            Editable can derive editors for data types.@@ -8,18 +8,16 @@   data type, and you can launch an editor for it with   @editor :: Editable a => a -> IO a@.   .-  @-    {-# LANGUAGE DeriveGeneric #-}-    module Demo where-  .-    import Data.Editable-    import GHC.Generics-  .-    data Foo = Bar String Int | Baz Int-      deriving (Show, Generic)+  > module Demo where+  >+  > import Data.Editable+  > import GHC.Generics+  >+  > data Foo = Bar String Int | Baz Int+  >   deriving (Show, Generic)+  >+  > instance Editable Foo   .-    instance Editable Foo-  @   <<https://cloud.githubusercontent.com/assets/136101/3006789/f235419e-de4d-11e3-8a4e-796d5b9ae49c.png>>  license:             BSD2