From 58c57f07d6f6f6df4dae3798a37dade1408e9540 Mon Sep 17 00:00:00 2001 From: koral Date: Tue, 25 Nov 2025 13:50:56 +0100 Subject: [PATCH 1/2] ci: Validate using LTS 24 --- .github/workflows/tests.yml | 1 + xml-conduit/xml-conduit.cabal | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eb5bc4b..996cc7d 100755 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,6 +19,7 @@ jobs: - windows-latest resolver: - nightly + - lts-24 - lts-23 - lts-22 - lts-20 diff --git a/xml-conduit/xml-conduit.cabal b/xml-conduit/xml-conduit.cabal index 87d4952..e1511ca 100644 --- a/xml-conduit/xml-conduit.cabal +++ b/xml-conduit/xml-conduit.cabal @@ -14,7 +14,7 @@ build-type: Custom homepage: http://github.com/snoyberg/xml extra-source-files: README.md ChangeLog.md -tested-with: GHC >=8.0 && <9.10 +tested-with: GHC >=8.0 && <9.12 custom-setup setup-depends: base >= 4 && <5, Cabal <4, cabal-doctest >= 1 && <1.1 From f4e48fd18600e13a85e9eedc6e26eb3094260ef6 Mon Sep 17 00:00:00 2001 From: koral Date: Tue, 25 Nov 2025 18:28:00 +0100 Subject: [PATCH 2/2] chore: Bump version --- xml-conduit/src/Text/XML/Stream/Render/Internal.hs | 2 +- xml-conduit/xml-conduit.cabal | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xml-conduit/src/Text/XML/Stream/Render/Internal.hs b/xml-conduit/src/Text/XML/Stream/Render/Internal.hs index f7eb4d7..7baacd5 100644 --- a/xml-conduit/src/Text/XML/Stream/Render/Internal.hs +++ b/xml-conduit/src/Text/XML/Stream/Render/Internal.hs @@ -398,7 +398,7 @@ nubAttrs orig = -- | Wrap the given stream in an 'EventBeginDocument'/'EventEndDocument' pair. -- --- @since TODO +-- @since 1.10.1.0 document :: (Monad m) => ConduitT i Event m () -> ConduitT i Event m () document content' = do yield EventBeginDocument diff --git a/xml-conduit/xml-conduit.cabal b/xml-conduit/xml-conduit.cabal index e1511ca..6e06cf7 100644 --- a/xml-conduit/xml-conduit.cabal +++ b/xml-conduit/xml-conduit.cabal @@ -1,7 +1,7 @@ cabal-version: 1.14 name: xml-conduit -version: 1.10.0.1 +version: 1.10.1.0 license: MIT license-file: LICENSE author: Michael Snoyman , Aristid Breitkreuz