M hurl-xml/CHANGELOG.md => hurl-xml/CHANGELOG.md +3 -0
@@ 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.
M hurl-xml/hurl-xml.cabal => hurl-xml/hurl-xml.cabal +2 -2
@@ 10,7 10,7 @@ name: hurl-xml
-- 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.
@@ 60,7 60,7 @@ library
-- other-extensions:
-- Other library packages from which modules are imported.
- build-depends: base >=4.12 && <4.16, text, bytestring, containers,
+ build-depends: base >=4.12 && <5, text, bytestring, containers,
data-default-class,
time, directory, filepath, temporary,
xml-conduit >= 1.8 && <2, html-conduit >= 1.3 && <2,
M hurl-xml/src/Network/URI/Fetch/XML.hs => hurl-xml/src/Network/URI/Fetch/XML.hs +1 -1
@@ 67,7 67,7 @@ loadVisited appname = do
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",