packages feed

hslua-aeson 2.2.0.1 → 2.2.1

raw patch · 4 files changed

+16/−6 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ HsLua.Aeson: jsonarray :: Name

Files

CHANGELOG.md view
@@ -2,6 +2,15 @@  `hslua-aeson` uses [PVP Versioning][]. +## hslua-aeson-2.2.1++Released 2022-06-23.++-   Export `jsonarray`, which is the name of the registry slot+    holding the metatable given to array tables. Setting the+    corresponding registry value will affect all newly created+    array values.+ ## hslua-aeson-2.2.0.1  Released 2022-06-16.
hslua-aeson.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.2 name:                hslua-aeson-version:             2.2.0.1+version:             2.2.1 synopsis:            Allow aeson data types to be used with Lua. description:         This package provides instances to push and receive any                      datatype encodable as JSON to and from the Lua stack.@@ -9,7 +9,7 @@ license-file:        LICENSE author:              Albert Krewinkel maintainer:          Albert Krewinkel <albert+hslua@zeitkraut.de>-copyright:           © 2017–2021 Albert Krewinkel+copyright:           © 2017–2022 Albert Krewinkel category:            Foreign extra-source-files:  README.md                    , CHANGELOG.md@@ -19,8 +19,8 @@                    , GHC == 8.6.5                    , GHC == 8.8.4                    , GHC == 8.10.7-                   , GHC == 9.0.1-                   , GHC == 9.2.1+                   , GHC == 9.0.2+                   , GHC == 9.2.3  source-repository head   type:                git
src/HsLua/Aeson.hs view
@@ -1,6 +1,6 @@ {-| Module      :  HsLua.Aeson-Copyright   :  © 2017–2021 Albert Krewinkel+Copyright   :  © 2017–2022 Albert Krewinkel License     :  MIT Maintainer  :  Albert Krewinkel <tarleb@zeitkraut.de> @@ -26,6 +26,7 @@   , pushValue   , peekViaJSON   , pushViaJSON+  , jsonarray   ) where  import Control.Monad ((<$!>), void)
test/test-hslua-aeson.hs view
@@ -1,6 +1,6 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-|-Copyright   :  © 2017–2021 Albert Krewinkel+Copyright   :  © 2017–2022 Albert Krewinkel License     :  MIT  Tests for Aeson–Lua glue.