hslua-module-doclayout 1.2.0 → 1.2.0.1
raw patch · 3 files changed
+11/−6 lines, 3 filesdep ~hsluaPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: hslua
API changes (from Hackage documentation)
- HsLua.Module.DocLayout: blankline :: forall e. LuaError e => Field e
+ HsLua.Module.DocLayout: blankline :: LuaError e => Field e
- HsLua.Module.DocLayout: cr :: forall e. LuaError e => Field e
+ HsLua.Module.DocLayout: cr :: LuaError e => Field e
- HsLua.Module.DocLayout: empty :: forall e. LuaError e => Field e
+ HsLua.Module.DocLayout: empty :: LuaError e => Field e
- HsLua.Module.DocLayout: fields :: forall e. LuaError e => [Field e]
+ HsLua.Module.DocLayout: fields :: LuaError e => [Field e]
- HsLua.Module.DocLayout: space :: forall e. LuaError e => Field e
+ HsLua.Module.DocLayout: space :: LuaError e => Field e
Files
- CHANGELOG.md +6/−0
- LICENSE +1/−1
- hslua-module-doclayout.cabal +4/−5
CHANGELOG.md view
@@ -3,6 +3,12 @@ `hslua-module-doclayout` uses [PVP Versioning][1]. The changelog is available [on GitHub][2]. +## 1.2.0.1++Released 2025-06-23.++- Relaxed upper bound for hslua, allow hslua-2.4.+ ## 1.2.0 Released 2024-09-21.
LICENSE view
@@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2024 Albert Krewinkel+Copyright (c) 2020-2025 Albert Krewinkel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
hslua-module-doclayout.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: hslua-module-doclayout-version: 1.2.0+version: 1.2.0.1 synopsis: Lua module wrapping Text.DocLayout. description: Lua module wrapping @Text.DocLayout@. homepage: https://github.com/hslua/hslua-module-doclayout@@ -9,14 +9,13 @@ license-file: LICENSE author: Albert Krewinkel maintainer: Albert Krewinkel <albert@zeitkraut.de>-copyright: © 2020-2024 Albert Krewinkel+copyright: © 2020-2025 Albert Krewinkel category: Foreign build-type: Simple extra-doc-files: README.md CHANGELOG.md extra-source-files: test/test-doclayout.lua-tested-with: GHC == 8.4.4- , GHC == 8.6.5+tested-with: GHC == 8.6.5 , GHC == 8.8.4 , GHC == 8.10.7 , GHC == 9.0.2@@ -32,7 +31,7 @@ common common-options build-depends: base >= 4.11 && < 5 , doclayout >= 0.5 && < 0.6- , hslua >= 2.3 && < 2.4+ , hslua >= 2.3 && < 2.5 , text >= 1.2 && < 2.2 default-language: Haskell2010