From a4fe13498594ebb46fff0638609b4545dad2cdb5 Mon Sep 17 00:00:00 2001 From: rxi Date: Sat, 8 Mar 2014 16:10:16 +0000 Subject: [PATCH] Version 1.1.2 --- lume.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lume.lua b/lume.lua index 2d1c30c..1e209b4 100644 --- a/lume.lua +++ b/lume.lua @@ -7,7 +7,7 @@ -- under the terms of the MIT license. See LICENSE for details. -- -local lume = { _version = "1.1.1" } +local lume = { _version = "1.1.2" } function lume.clamp(x, min, max) @@ -76,7 +76,6 @@ function lume.shuffle(t) end - function lume.array(...) local t = {} for x in unpack({...}) do t[#t + 1] = x end @@ -153,7 +152,6 @@ function lume.merge(t, t2, retainkeys) end - function lume.find(t, value) for k, v in pairs(t) do if v == value then return k end