lua-arbitrary 1.0.1.1 → 1.0.1.2
raw patch · 3 files changed
+25/−19 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−0
- LICENSE +2/−2
- lua-arbitrary.cabal +17/−17
CHANGELOG.md view
@@ -2,6 +2,12 @@ `lua-arbitrary` uses [PVP Versioning][]. +## lua-arbitrary-1.0.1.2++Released 2026-01-08.++- Cabal cleanups, update list of tested GHC versions.+ ## lua-arbitrary-1.0.1.1 Released 2023-03-13.
LICENSE view
@@ -1,7 +1,7 @@-Copyright © 1994-2022 Lua.org, PUC-Rio.+Copyright © 1994-2023 Lua.org, PUC-Rio. Copyright © 2007-2012 Gracjan Polak Copyright © 2012-2015 Ömer Sinan Ağacan-Copyright © 2016-2023 Albert Krewinkel+Copyright © 2016-2026 Albert Krewinkel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
lua-arbitrary.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: lua-arbitrary-version: 1.0.1.1+version: 1.0.1.2 synopsis: Arbitrary instances for Lua types. description: Provides instances for QuickCheck's \"Arbitrary\" typeclass.@@ -12,18 +12,15 @@ maintainer: tarleb@hslua.org copyright: © 2007–2012 Gracjan Polak; © 2012–2016 Ömer Sinan Ağacan;- © 2017-2023 Albert Krewinkel+ © 2017-2026 Albert Krewinkel category: Foreign build-type: Simple extra-source-files: README.md , CHANGELOG.md-tested-with: GHC == 8.4.4- , GHC == 8.6.5- , GHC == 8.8.4- , GHC == 8.10.7- , GHC == 9.0.2- , GHC == 9.2.5- , GHC == 9.4.4+tested-with: GHC == 9.6+ , GHC == 9.8+ , GHC == 9.10+ , GHC == 9.12 source-repository head type: git@@ -34,18 +31,21 @@ build-depends: base >= 4.11 && < 5 , lua >= 2.0 && < 2.4 , QuickCheck >= 2.7 && < 3+ ghc-options: -Wall+ -Wcpp-undef+ -Werror=missing-home-modules+ -Widentities -Wincomplete-record-updates+ -Wincomplete-uni-patterns -Wnoncanonical-monad-instances+ -Wpartial-fields -Wredundant-constraints- if impl(ghc >= 8.2)- ghc-options: -Wcpp-undef- -Werror=missing-home-modules- if impl(ghc >= 8.4)- ghc-options: -Widentities- -Wincomplete-uni-patterns- -Wpartial-fields- -fhide-source-paths+ -fhide-source-paths+ if impl(ghc >= 8.10)+ ghc-options: -Wunused-packages+ if impl(ghc >= 9.0)+ ghc-options: -Winvalid-haddock library import: common-options