packages feed

layouting 1.1.2 → 1.1.3

raw patch · 2 files changed

+11/−11 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Data.Layout: squoted :: (Semigroup a, IsString a) => a -> a
+ Data.Layout: singleQuoted :: (Semigroup a, IsString a) => a -> a
- Data.Layout: bounded_bounds :: forall a_akVG. Lens' (Bounded a_akVG) Bounds
+ Data.Layout: bounded_bounds :: forall a_al4X. Lens' (Bounded a_al4X) Bounds
- Data.Layout: bounded_elem :: forall a_akVG a_amwX. Lens (Bounded a_akVG) (Bounded a_amwX) a_akVG a_amwX
+ Data.Layout: bounded_elem :: forall a_al4X a_amHg. Lens (Bounded a_al4X) (Bounded a_amHg) a_al4X a_amHg
- Data.Layout: bounds :: HasBounds c_amus => Lens' c_amus Bounds
+ Data.Layout: bounds :: HasBounds c_amEL => Lens' c_amEL Bounds
- Data.Layout: class HasBounds c_amus
+ Data.Layout: class HasBounds c_amEL
- Data.Layout: height :: HasBounds c_amus => Lens' c_amus Delta
+ Data.Layout: height :: HasBounds c_amEL => Lens' c_amEL Delta
- Data.Layout: lineBlock_bounds :: forall a_amxA. Lens' (LineBlock a_amxA) Bounds
+ Data.Layout: lineBlock_bounds :: forall a_amHT. Lens' (LineBlock a_amHT) Bounds
- Data.Layout: lines :: forall a_amxA a_anRT. Lens (LineBlock a_amxA) (LineBlock a_anRT) [a_amxA] [a_anRT]
+ Data.Layout: lines :: forall a_amHT a_ao2G. Lens (LineBlock a_amHT) (LineBlock a_ao2G) [a_amHT] [a_ao2G]
- Data.Layout: width :: HasBounds c_amus => Lens' c_amus Delta
+ Data.Layout: width :: HasBounds c_amEL => Lens' c_amEL Delta

Files

layouting.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 0eb439a89e63521360584d76604cf7022a22dd6b7b68cfc459fd7fde7cab9a68+-- hash: 7ed7e403328d326fbc76963ec865d87af965c693275a55c8753d3e256a14aed8  name:           layouting-version:        1.1.2+version:        1.1.3 synopsis:       General layouting library. Currently supports layouting 2D areas and can be used as a backend for text pretty printing or automatic windows layouting managers. category:       Data stability:      experimental
src/Data/Layout.hs view
@@ -39,15 +39,15 @@ space :: IsString a => a space = " " -parensed, bracked, braced, chevroned, spaced, quoted, squoted, backticked :: (Semigroup a, IsString a) => a -> a-parensed   = between "(" ")"-bracked    = between "[" "]"-braced     = between "{" "}"-chevroned  = between "<" ">"-spaced     = between' " "-quoted     = between' "\""-squoted    = between' "'"-backticked = between' "`"+parensed, bracked, braced, chevroned, spaced, quoted, singleQuoted, backticked :: (Semigroup a, IsString a) => a -> a+parensed     = between "(" ")"+bracked      = between "[" "]"+braced       = between "{" "}"+chevroned    = between "<" ">"+spaced       = between' " "+quoted       = between' "\""+singleQuoted = between' "'"+backticked   = between' "`"   -- === Text layouting === --