packages feed

clay 0.1 → 0.1.1

raw patch · 2 files changed

+5/−11 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

clay.cabal view
@@ -1,5 +1,5 @@ Name:     clay-Version:  0.1+Version:  0.1.1 Synopsis: CSS preprocessor as embedded Haskell. Description:   Clay is a CSS preprocessor like LESS and Sass, but implemented as an embedded@@ -11,15 +11,9 @@   .   The API documentation can be found in the top level module "Clay".   .-  > 0.0.1 -> 0.1-  >   - Fixed bug in combined selector rendering.-  >   - Fixed bug in font familty fallback category rendering.-  >   - Added maxWidth and maxHeight.-  >   - Fixed example code.-  >   - Fixed overflowX/overflowY bug.-  >   - Added some show instance for debugging purposes.-  >   - Don't print the star (*) selector in the case of refinements.-  >   - Refinements applied to the top level magically introduce star selector.+  > 0.1 -> 0.1.1+  >   - Fixed bug in visibility property.+  >   Thanks to Conrad Indiono for the pull request.  Author:        Sebastiaan Visser Maintainer:    Sebastiaan Visser <code@fvisser.nl>
src/Clay/Display.hs view
@@ -159,7 +159,7 @@ collapse = Visibility "collapse"  visibility :: Visibility -> Css-visibility = key "overflow"+visibility = key "visibility"  -------------------------------------------------------------------------------