mirror of
https://github.com/Reuh/candran.git
synced 2025-10-27 09:59:29 +00:00
Candran v0.13
This commit is contained in:
parent
98efdc95f4
commit
d68c6fab0d
3 changed files with 5 additions and 5 deletions
|
|
@ -15,7 +15,7 @@
|
||||||
local unpack = unpack or table.unpack
|
local unpack = unpack or table.unpack
|
||||||
|
|
||||||
local candran = {
|
local candran = {
|
||||||
VERSION = "0.13.1"
|
VERSION = "0.13.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
--- Default options.
|
--- Default options.
|
||||||
|
|
|
||||||
|
|
@ -6398,7 +6398,7 @@ end -- ./candran/can-parser/parser.lua:777
|
||||||
local parser = _() or parser -- ./candran/can-parser/parser.lua:781
|
local parser = _() or parser -- ./candran/can-parser/parser.lua:781
|
||||||
package["loaded"]["candran.can-parser.parser"] = parser or true -- ./candran/can-parser/parser.lua:782
|
package["loaded"]["candran.can-parser.parser"] = parser or true -- ./candran/can-parser/parser.lua:782
|
||||||
local unpack = unpack or table["unpack"] -- candran.can:15
|
local unpack = unpack or table["unpack"] -- candran.can:15
|
||||||
local candran = { ["VERSION"] = "0.13.1" } -- candran.can:18
|
local candran = { ["VERSION"] = "0.13.0" } -- candran.can:18
|
||||||
candran["default"] = { -- candran.can:22
|
candran["default"] = { -- candran.can:22
|
||||||
["target"] = "lua54", -- candran.can:23
|
["target"] = "lua54", -- candran.can:23
|
||||||
["indentation"] = "", -- candran.can:24
|
["indentation"] = "", -- candran.can:24
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,12 @@ rockspec_format = "3.0"
|
||||||
|
|
||||||
package = "candran"
|
package = "candran"
|
||||||
|
|
||||||
version = "0.12.0-1"
|
version = "0.13.0-1"
|
||||||
|
|
||||||
description = {
|
description = {
|
||||||
summary = "A simple Lua dialect and preprocessor.",
|
summary = "A simple Lua dialect and preprocessor.",
|
||||||
detailed = [[
|
detailed = [[
|
||||||
Candran is a dialect of the Lua 5.3 programming language which compiles to Lua 5.3, LuaJIT and Lua 5.1 compatible code. It adds several useful syntax additions which aims to make Lua faster and easier to write, and a simple preprocessor.
|
Candran is a dialect of the Lua 5.4 programming language which compiles to Lua 5.4, Lua 5.3, Lua 5.2, LuaJIT and Lua 5.1 compatible code. It adds several useful syntax additions which aims to make Lua faster and easier to write, and a simple preprocessor.
|
||||||
Unlike Moonscript, Candran tries to stay close to the Lua syntax, and existing Lua code should be able to run on Candran unmodified.
|
Unlike Moonscript, Candran tries to stay close to the Lua syntax, and existing Lua code should be able to run on Candran unmodified.
|
||||||
]],
|
]],
|
||||||
license = "MIT",
|
license = "MIT",
|
||||||
|
|
@ -19,7 +19,7 @@ description = {
|
||||||
|
|
||||||
source = {
|
source = {
|
||||||
url = "git://github.com/Reuh/candran",
|
url = "git://github.com/Reuh/candran",
|
||||||
tag = "v0.12.0"
|
tag = "v0.13.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies = {
|
dependencies = {
|
||||||
Loading…
Add table
Add a link
Reference in a new issue