Skip to content

Commit

Permalink
Release version 1.2-1.
Browse files Browse the repository at this point in the history
  • Loading branch information
bakpakin committed Sep 8, 2015
1 parent 6234e4b commit 2403a90
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions rockspecs/tiny-ecs-1.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package = "tiny-ecs"
version = "1.2-1"
source = {
url = "git://github.com/bakpakin/tiny-ecs",
tag = "1.2-1"
}
description = {
summary = "Entity Component System for Lua.",
detailed = [[
Pure Lua implementation of an easy to use, compact, fast, and flexible
Entity Component System. Works well with Object Orientation.
]],
homepage = "https://github.com/bakpakin/tiny-ecs",
license = "MIT"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
tiny = "tiny.lua"
}
}
2 changes: 1 addition & 1 deletion tiny.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-- @author Calvin Rose
-- @license MIT
-- @copyright 2015
local tiny = { _VERSION = "scm" }
local tiny = { _VERSION = "1.2-1" }

-- Local versions of standard lua functions
local tinsert = table.insert
Expand Down

0 comments on commit 2403a90

Please sign in to comment.