From 0eccde530a1e919b7259abf49dd8ac4fe3f4bf30 Mon Sep 17 00:00:00 2001 From: Paul Liverman III Date: Mon, 23 Apr 2018 02:35:20 -0700 Subject: [PATCH] upd version / ReadMe --- README.md | 3 +++ lume.lua | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b73f9d4..8bd0d85 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ A collection of functions for Lua, geared towards game development. +This fork incorporates randomization from the LOVE engine's math library if +available, and uses a local for random calls. + ## Installation diff --git a/lume.lua b/lume.lua index c38e3ae..f97fe50 100644 --- a/lume.lua +++ b/lume.lua @@ -22,7 +22,7 @@ -- SOFTWARE. -- -local lume = { _version = "2.3.0" } +local lume = { _version = "2.4.0-Guard13007-fork" } local pairs, ipairs = pairs, ipairs local type, assert, unpack = type, assert, unpack or table.unpack