packages feed

tasty-hslua 1.1.0 → 1.1.1

raw patch · 4 files changed

+15/−7 lines, 4 filesdep ~bytestring

Dependency ranges changed: bytestring

Files

CHANGELOG.md view
@@ -2,6 +2,12 @@  `tasty-hslua` uses [PVP Versioning][]. +## tasty-hslua-1.1.1++Released 2024-01-18.++-   Relaxed upper bound for bytestring, allowing bytestring-0.12.+ ## tasty-hslua-1.1.0  Released 2023-03-13.
LICENSE view
@@ -1,4 +1,4 @@-Copyright © 2017-2023 Albert Krewinkel+Copyright © 2017-2024 Albert Krewinkel  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
src/Test/Tasty/HsLua.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE OverloadedStrings #-} {-| Module      : Test.Tasty.HsLua-Copyright   : © 2017-2023 Albert Krewinkel+Copyright   : © 2017-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> Stability   : beta
tasty-hslua.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.2 name:                tasty-hslua-version:             1.1.0+version:             1.1.1 synopsis:            Tasty helpers to test HsLua. description:         Various tasty helpers and utilities to test HsLua                      oparations. Built on top of tasty-hunit.@@ -10,7 +10,7 @@ license-file:        LICENSE author:              Albert Krewinkel maintainer:          tarleb@hslua.org-copyright:           © 2017-2023 Albert Krewinkel+copyright:           © 2017-2024 Albert Krewinkel category:            Foreign build-type:          Simple extra-source-files:  README.md@@ -20,8 +20,10 @@                    , GHC == 8.8.4                    , 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@@ -31,7 +33,7 @@   default-language:    Haskell2010   build-depends:       base          >= 4.11   && < 5                      , hslua-core    >= 2.3    && < 2.4-                     , bytestring    >= 0.10.2 && < 0.12+                     , bytestring    >= 0.10.2 && < 0.13   ghc-options:         -Wall                        -Wincomplete-record-updates                        -Wnoncanonical-monad-instances