stylist-traits 0.1.3.1 → 0.1.4.0
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Stylist.Tree: instance GHC.Classes.Eq p => GHC.Classes.Eq (Stylist.Tree.StyleTree p)
+ Stylist.Tree: instance GHC.Classes.Ord p => GHC.Classes.Ord (Stylist.Tree.StyleTree p)
+ Stylist.Tree: instance GHC.Read.Read p => GHC.Read.Read (Stylist.Tree.StyleTree p)
+ Stylist.Tree: instance GHC.Show.Show p => GHC.Show.Show (Stylist.Tree.StyleTree p)
Files
- src/Stylist/Tree.hs +1/−1
- stylist-traits.cabal +2/−2
src/Stylist/Tree.hs view
@@ -8,7 +8,7 @@ data StyleTree p = StyleTree { style :: p, children :: [StyleTree p]-}+} deriving (Read, Show, Eq, Ord) -- | Indices within the tree. type Path = [Integer]
stylist-traits.cabal view
@@ -10,7 +10,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.1.3.1+version: 0.1.4.0 -- A short (one-line) description of the package. synopsis: Traits, datatypes, & parsers for Haskell Stylist@@ -65,7 +65,7 @@ -- other-extensions: -- Other library packages from which modules are imported.- build-depends: base >=4.12 && <4.16, css-syntax >=0.1 && <0.2, text, network-uri >= 2.6 && <2.7+ build-depends: base >=4.12 && <5, css-syntax >=0.1 && <0.2, text, network-uri >= 2.6 && <2.7 -- Directories containing source files. hs-source-dirs: src