diff --git a/README.md b/README.md index 6652057..2ff66f2 100644 --- a/README.md +++ b/README.md @@ -159,6 +159,10 @@ See LICENSE file. ## History +### v0.24 (Jun 12 2013) + - Fixed an issue with missing numerical keys (fixes #8). + - Fixed an issue with luaffi that returns `getmetatable(ffi.C)` as `true`. + ### v0.23 (Mar 24 2013) - Added support for `cdata` type in LuaJIT (thanks to [Evan](https://github.com/neomantra)). - Added comment to indicate incomplete output. diff --git a/misc/serpent-0.24-1.rockspec b/misc/serpent-0.24-1.rockspec new file mode 100644 index 0000000..591d44f --- /dev/null +++ b/misc/serpent-0.24-1.rockspec @@ -0,0 +1,25 @@ +package = "serpent" +version = "0.24-1" +source = { + url = "git://github.com/pkulchenko/serpent.git", + tag = "0.24" +} + +description = { + summary = "Lua serializer and pretty printer", + homepage = "https://github.com/pkulchenko/serpent", + maintainer = "Paul Kulchenko ", + license = "MIT", +} + +dependencies = { + "lua >= 5.1, < 5.3", +} + +build = { + type = "builtin", + modules = { + ["serpent"] = "src/serpent.lua", + }, + copy_directories = { "t" }, +}