Fix first rockspec.

This commit is contained in:
bakpakin 2015-04-26 11:35:23 +08:00
parent 724d5689fe
commit 18bd48e163
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
package = "tiny-ecs"
version = "1.0.1"
version = "1.0-2"
source = {
url = "git://github.com/bakpakin/tiny-ecs",
tag = "1.0.1"
tag = "1.0-2"
}
description = {
summary = "Entity Component System for Lua.",

View File

@ -1,6 +1,6 @@
--- @module tiny-ecs
-- @author Calvin Rose
local tiny = { _VERSION = "1.0.2" }
local tiny = { _VERSION = "1.0-2" }
-- Local versions of standard lua functions
local tinsert = table.insert