Updated documentation for 0.24.

This commit is contained in:
Paul Kulchenko 2013-06-12 11:06:02 -07:00
parent f7b2a819c0
commit 28d1f0f49d
2 changed files with 29 additions and 0 deletions

View File

@ -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.

View File

@ -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 <paul@kulchenko.com>",
license = "MIT",
}
dependencies = {
"lua >= 5.1, < 5.3",
}
build = {
type = "builtin",
modules = {
["serpent"] = "src/serpent.lua",
},
copy_directories = { "t" },
}