hslua-module-doclayout 1.1.1.1 → 1.1.1.2
raw patch · 3 files changed
+8/−2 lines, 3 filesdep ~doclayoutPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: doclayout
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−0
- hslua-module-doclayout.cabal +1/−1
- src/HsLua/Module/DocLayout.hs +1/−1
CHANGELOG.md view
@@ -3,6 +3,12 @@ `hslua-module-doclayout` uses [PVP Versioning][1]. The changelog is available [on GitHub][2]. +## 1.1.1.2++Released 2024-06-10.++- Fixed another documentation bugs: `render` returns a `string`.+ ## 1.1.1.1 Released 2024-06-09.
hslua-module-doclayout.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: hslua-module-doclayout-version: 1.1.1.1+version: 1.1.1.2 synopsis: Lua module wrapping Text.DocLayout. description: Lua module wrapping @Text.DocLayout@. homepage: https://github.com/hslua/hslua-module-doclayout
src/HsLua/Module/DocLayout.hs view
@@ -246,7 +246,7 @@ ### liftPure2 (flip Doc.render) <#> docParam "doc" <#> opt (integralParam "colwidth" "planned maximum line length")- =#> functionResult pushText "Doc" "rendered doc"+ =#> functionResult pushText "string" "rendered doc" #? T.unlines [ "Render a [[Doc]]. The text is reflowed on breakable spaces to" , "match the given line length. Text is not reflowed if the line"