packages feed

hslua-repl 0.1.1 → 0.1.2

raw patch · 5 files changed

+20/−11 lines, 5 filesdep ~bytestringdep ~textPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: bytestring, text

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -2,7 +2,14 @@  `hslua-repl` uses [PVP Versioning](https://pvp.haskell.org). -## hslua-repl-0.1.0+## hslua-repl-0.1.2++Released 2024-01-18.++-   Relaxed upper bound for text and bytestring, allowing text-2.1+    and bytestring-0.12.++## hslua-repl-0.1.1  Released 2023-03-17. 
LICENSE view
@@ -1,4 +1,4 @@-Copyright © 2023 Albert Krewinkel+Copyright © 2023-2024 Albert Krewinkel  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
app/luarepl.hs view
@@ -2,7 +2,7 @@ {-# LANGUAGE TypeApplications  #-} {- | Module      : Main-Copyright   : © 2022-2023 Albert Krewinkel+Copyright   : © 2022-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org> @@ -20,7 +20,7 @@   let config = Config         { replPrompt = "luarepl"         , replInfo = replInfo defaultConfig `T.append`-                     "\nREPL: © 2023 Albert Krewinkel"+                     "\nREPL: © 2023-2024 Albert Krewinkel"         , replHistory = Just ".luarepl-history"         }   openlibs
hslua-repl.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.2 name:                hslua-repl-version:             0.1.1+version:             0.1.2 synopsis:            Isocline-based Lua REPL description:         An embeddable Lua REPL built with Isocline and HsLua. homepage:            https://hslua.org/@@ -9,7 +9,7 @@ license-file:        LICENSE author:              Albert Krewinkel maintainer:          Albert Krewinkel <tarleb@hslua.org>-copyright:           © 2023 Albert Krewinkel+copyright:           © 2023-2024 Albert Krewinkel category:            Foreign build-type:          Simple extra-doc-files:     README.md@@ -19,8 +19,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@@ -34,7 +36,7 @@ common common-options   build-depends:       base              >= 4.9.1  && < 5                      , hslua-core        >= 2.3.1  && < 2.4-                     , text              >= 1.2    && < 2.1+                     , text              >= 1.2    && < 2.2    ghc-options:         -Wall                        -Wcpp-undef@@ -62,7 +64,7 @@   hs-source-dirs:      src   exposed-modules:     HsLua.REPL   build-depends:       base              >= 4.11   && < 5-                     , bytestring        >= 0.10   && < 0.12+                     , bytestring        >= 0.10   && < 0.13                      , isocline          >= 1.0    && < 1.1                      , lua               >= 2.3    && < 2.4 
src/HsLua/REPL.hs view
@@ -5,7 +5,7 @@ {-# LANGUAGE ScopedTypeVariables #-} {- | Module      : HsLua.REPL-Copyright   : Copyright © 2017-2023 Albert Krewinkel+Copyright   : Copyright © 2017-2024 Albert Krewinkel License     : MIT Maintainer  : Albert Krewinkel <tarleb@hslua.org>