threepenny-editors 0.4.0 → 0.4.1
raw patch · 3 files changed
+4/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +2/−0
- src/Graphics/UI/Threepenny/Editors/Profunctor.hs +1/−1
- threepenny-editors.cabal +1/−1
CHANGELOG.md view
@@ -1,3 +1,5 @@+# 0.4.1 (2017-07-13)+ * Improved the rendering of constructors in generic sum editors # 0.4.0 (2017-07-13) * Fixed a bug in the layout engine * Dropped editorDefSetup
src/Graphics/UI/Threepenny/Editors/Profunctor.hs view
@@ -204,7 +204,7 @@ editorGeneric' (Newtype _ _ c) = constructorEditorFor c newtype Tag = Tag String deriving (Eq, Ord)-instance Show Tag where show (Tag t) = t+instance Show Tag where show (Tag t) = init $ toFieldLabel t constructorEditorsFor :: forall xx . (All (All Editable `And` All Default) xx)
threepenny-editors.cabal view
@@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: threepenny-editors-version: 0.4.0+version: 0.4.1 synopsis: Composable algebraic editors description: This package provides a type class 'Editable' and combinators to easily put together form-like editors for algebraic datatypes.