packages feed

hslua-module-system 1.1.0.1 → 1.1.1

raw patch · 6 files changed

+17/−9 lines, 6 filesdep ~textPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: text

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -2,6 +2,12 @@  `hslua-module-system` uses [PVP Versioning][]. +## hslua-module-system-1.1.1++Released 2024-01-18.++-   Relaxed upper bound for text, allowing text-2.1.+ ## hslua-module-system-1.1.0.1  Released 2023-03-26.
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2019-2023 Albert Krewinkel+Copyright (c) 2019-2024 Albert Krewinkel  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
hslua-module-system.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.2 name:                hslua-module-system-version:             1.1.0.1+version:             1.1.1 synopsis:            Lua module wrapper around Haskell's System module.  description:         Provides access to system information and@@ -15,7 +15,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 extra-source-files:  CHANGELOG.md                    , test/test-system.lua@@ -24,8 +24,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@@ -37,7 +39,7 @@   build-depends:       base                 >= 4.11   && < 5                      , hslua-core           >= 2.1    && < 2.4                      , hslua-packaging      >= 2.3    && < 2.4-                     , text                 >= 1.2    && < 2.1+                     , text                 >= 1.2    && < 2.2   default-extensions:  LambdaCase                      , OverloadedStrings   ghc-options:         -Wall
src/HsLua/Module/System.hs view
@@ -1,6 +1,6 @@ {-| Module      : HsLua.Module.System-Copyright   : © 2019-2023 Albert Krewinkel+Copyright   : © 2019-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> Stability   : alpha
src/HsLua/Module/SystemUtils.hs view
@@ -1,6 +1,6 @@ {-| Module      : HsLua.Module.SystemUtils-Copyright   : © 2019-2023 Albert Krewinkel+Copyright   : © 2019-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> 
test/test-hslua-module-system.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> Stability   : alpha