tasty-lua 1.1.0 → 1.1.1
raw patch · 8 files changed
+22/−13 lines, 8 filesdep ~QuickCheckdep ~bytestringdep ~tasty
Dependency ranges changed: QuickCheck, bytestring, tasty, text
Files
- CHANGELOG.md +7/−0
- src/Test/Tasty/Lua.hs +1/−1
- src/Test/Tasty/Lua/Arbitrary.hs +1/−1
- src/Test/Tasty/Lua/Core.hs +1/−1
- src/Test/Tasty/Lua/Module.hs +1/−1
- src/Test/Tasty/Lua/Translate.hs +1/−1
- tasty-lua.cabal +9/−7
- test/test-tasty-lua.hs +1/−1
CHANGELOG.md view
@@ -2,6 +2,13 @@ `tasty-lua` uses [PVP Versioning][]. +## tasty-lua-1.1.1++Released 2024-01-18.++- Relaxed upper bound for tasty, text, and bytestring, allowing+ tasty-1.5, text-2.1, and bytestring-0.12.+ ## tasty-lua-1.1.0 Released 2023-03-13.
src/Test/Tasty/Lua.hs view
@@ -3,7 +3,7 @@ {-# LANGUAGE TypeApplications #-} {-| Module : Test.Tasty.Lua-Copyright : © 2019-2023 Albert Krewinkel+Copyright : © 2019-2024 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org> Stability : alpha
src/Test/Tasty/Lua/Arbitrary.hs view
@@ -3,7 +3,7 @@ {-# LANGUAGE TypeApplications #-} {-| Module : Test.Tasty.Lua.Arbitrary-Copyright : © 2019-2023 Albert Krewinkel+Copyright : © 2019-2024 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org>
src/Test/Tasty/Lua/Core.hs view
@@ -2,7 +2,7 @@ {-# LANGUAGE ScopedTypeVariables #-} {-| Module : Test.Tasty.Lua.Core-Copyright : © 2019-2023 Albert Krewinkel+Copyright : © 2019-2024 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org>
src/Test/Tasty/Lua/Module.hs view
@@ -2,7 +2,7 @@ {-# LANGUAGE TemplateHaskell #-} {-| Module : Test.Tasty.Lua.Module-Copyright : © 2019-2023 Albert Krewinkel+Copyright : © 2019-2024 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org>
src/Test/Tasty/Lua/Translate.hs view
@@ -1,6 +1,6 @@ {-| Module : Test.Tasty.Lua.Translate-Copyright : © 2019-2023 Albert Krewinkel+Copyright : © 2019-2024 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org>
tasty-lua.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: tasty-lua-version: 1.1.0+version: 1.1.1 synopsis: Write tests in Lua, integrate into tasty. description: Allow users to define tasty tests from Lua. homepage: https://github.com/hslua/hslua@@ -8,7 +8,7 @@ license-file: LICENSE author: Albert Krewinkel maintainer: tarleb@hslua.org-copyright: © 2019-2023 Albert Krewinkel <tarleb@hslua.org>+copyright: © 2019-2024 Albert Krewinkel <tarleb@hslua.org> category: Foreign build-type: Simple extra-source-files: CHANGELOG.md@@ -19,8 +19,10 @@ , GHC == 8.8.3 , GHC == 8.10.7 , GHC == 9.0.2- , GHC == 9.2.5- , GHC == 9.4.4+ , GHC == 9.2.8+ , GHC == 9.4.8+ , GHC == 9.6.3+ , GHC == 9.8.1 source-repository head type: git@@ -30,11 +32,11 @@ common common-options default-language: Haskell2010 build-depends: base >= 4.11 && < 5- , bytestring >= 0.10.2 && < 0.12+ , bytestring >= 0.10.2 && < 0.13 , hslua-core >= 2.3 && < 2.4 , hslua-marshalling >= 2.0 && < 2.4 , lua-arbitrary >= 1.0 && < 1.1- , tasty >= 1.2 && < 1.5+ , tasty >= 1.2 && < 1.6 , QuickCheck >= 2.9 && < 2.15 default-extensions: LambdaCase , StrictData@@ -54,7 +56,7 @@ library import: common-options build-depends: file-embed >= 0.0 && < 0.1- , text >= 1.2 && < 2.1+ , text >= 1.2 && < 2.2 exposed-modules: Test.Tasty.Lua , Test.Tasty.Lua.Arbitrary , Test.Tasty.Lua.Core
test/test-tasty-lua.hs view
@@ -2,7 +2,7 @@ {-# LANGUAGE TypeApplications #-} {-| Module : Main-Copyright : © 2019-2023 Albert Krewinkel+Copyright : © 2019-2024 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tarleb@hslua.org>