mirror of
https://github.com/pkulchenko/serpent.git
synced 2024-11-21 23:24:24 +00:00
Updated documentation for 0.28.
This commit is contained in:
parent
d78f212b71
commit
d625641f65
10
README.md
10
README.md
@ -186,6 +186,16 @@ See LICENSE file.
|
|||||||
|
|
||||||
## History
|
## History
|
||||||
|
|
||||||
|
### v0.28 (May 06 2015)
|
||||||
|
- Switched to a method proposed by @SoniEx2 to disallow function calls (#15).
|
||||||
|
- Added more `tostring` for Lua 5.3 support (pkulchenko/ZeroBraneStudio#401).
|
||||||
|
- Updated environment handling to localize the impact (#15).
|
||||||
|
- Added setting env to protect against assigning global functions (closes #15).
|
||||||
|
- Updated tests to work with Lua 5.3.
|
||||||
|
- Added explicit `tostring` for Lua 5.3 with `LUA_NOCVTN2S` set (pkulchenko/ZeroBraneStudio#401).
|
||||||
|
- Fixed crash when not all Lua standard libraries are loaded (thanks to Tommy Nguyen).
|
||||||
|
- Improved Lua 5.2 support for serialized functions.
|
||||||
|
|
||||||
### v0.27 (Jan 11 2014)
|
### v0.27 (Jan 11 2014)
|
||||||
- Fixed order of elements in the array part with `sortkeys=true` (fixes #13).
|
- Fixed order of elements in the array part with `sortkeys=true` (fixes #13).
|
||||||
- Updated custom formatter documentation (closes #11).
|
- Updated custom formatter documentation (closes #11).
|
||||||
|
25
misc/serpent-0.28-1.rockspec
Normal file
25
misc/serpent-0.28-1.rockspec
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
package = "serpent"
|
||||||
|
version = "0.28-1"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/pkulchenko/serpent.git",
|
||||||
|
tag = "0.28"
|
||||||
|
}
|
||||||
|
|
||||||
|
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.4",
|
||||||
|
}
|
||||||
|
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
["serpent"] = "src/serpent.lua",
|
||||||
|
},
|
||||||
|
copy_directories = { "t" },
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user