Add support for Lua 5.3.2

This commit is contained in:
mpeterv 2015-12-02 11:55:09 +03:00
parent 66c19b8866
commit 9dfa3e15e0

View File

@ -336,15 +336,15 @@ class RioLua(Lua):
versions = [
"5.1", "5.1.1", "5.1.2", "5.1.3", "5.1.4", "5.1.5",
"5.2.0", "5.2.1", "5.2.2", "5.2.3", "5.2.4",
"5.3.0", "5.3.1"
"5.3.0", "5.3.1", "5.3.2"
]
translations = {
"5": "5.3.1",
"5": "5.3.2",
"5.1": "5.1.5",
"5.1.0": "5.1",
"5.2": "5.2.4",
"5.3": "5.3.1",
"^": "5.3.1"
"5.3": "5.3.2",
"^": "5.3.2"
}
def major_version_from_version(self):