hurl-xml 0.2.0.1 → 0.2.0.2
raw patch · 3 files changed
+5/−2 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +3/−0
- hurl-xml.cabal +1/−1
- src/Network/URI/Fetch/XML.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,8 @@ # Revision history for hurl-xml +## 0.21.0.2 -- 2023-06-23+* Attempted fix to managing the history log.+ ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world.
hurl-xml.cabal view
@@ -10,7 +10,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.2.0.1+version: 0.2.0.2 -- A short (one-line) description of the package. synopsis: Fetch parsed XML & possibly CSS for a URL based on MIMEtype.
src/Network/URI/Fetch/XML.hs view
@@ -67,7 +67,7 @@ return hist else return Set.empty -readStrict path = do s <- Prelude.readFile path; length s `seq` return s+readStrict path = Txt.unpack <$> Txt.readFile path utf8' bytes = convertCharset "utf-8" $ B.toStrict bytes aCCEPT = ["text/xml", "application/xml", "text/html", "text/gemini",