From e4585f4a4b180fe20d62e804b35b100398e717ee Mon Sep 17 00:00:00 2001 From: Adrian Cochrane Date: Tue, 16 May 2023 13:28:39 +1200 Subject: [PATCH] Add more version bounds! --- ChangeLog.md | 5 +++++ stylist.cabal | 9 +++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index f82a932..f8cd3e5 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,10 @@ # Revision history for stylist +## 2.7.0 -- 2023-05-16 +* Improved crash resiliency in rendering numbers +* Allow prioritizing specific properties in cascade. +* Renamed `priority` field of queryable stylesheets to avoid conflict in reexports (hence major version) + ## 2.6.0 -- 2023-05-04 * Improved text generation * Added infrastructure forwarding pseudoelements to PropertyParsers diff --git a/stylist.cabal b/stylist.cabal index dc78855..eccaf2c 100644 --- a/stylist.cabal +++ b/stylist.cabal @@ -10,7 +10,7 @@ name: stylist -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change -version: 2.6.0.0 +version: 2.7.0.0 -- A short (one-line) description of the package. synopsis: Apply CSS styles to a document tree. @@ -69,10 +69,11 @@ library -- other-extensions: -- Other library packages from which modules are imported. - build-depends: base >=4.9 && <5, css-syntax >=0.1 && <0.2, text, - unordered-containers >= 0.2 && <0.3, hashable, + build-depends: base >=4.9 && <5, css-syntax >=0.1 && <0.2, + unordered-containers >= 0.2 && <0.3, + hashable >= 1.4.2 && < 1.5, text >= 1.2.4 && < 1.3, network-uri >= 2.6 && <2.7, async >= 2.1 && <2.3, - regex-tdfa >= 1.3, stylist-traits >= 0.1.2 && < 0.2, + regex-tdfa >=1.3 && <1.4, stylist-traits >=0.1.2 && <0.2, file-embed >= 0.0.10 && < 0.1 -- Directories containing source files. -- 2.30.2