Skip to content

Commit 3e32403

Browse files
committed
v1.10.0
1 parent 766f7b9 commit 3e32403

3 files changed

Lines changed: 37 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
- [Chunk](#chunk)
6666
- [Builder](#builder)
6767
- [Changelog](#changelog)
68-
- [vX.Y.Z](#vxyz)
68+
- [v1.10.0](#v1100)
6969
- [v1.9.0](#v190)
7070
- [v1.8.0](#v180)
7171
- [v1.7.0](#v170)
@@ -1636,7 +1636,7 @@ builder_mt:destruction_policy :: id -> builder
16361636

16371637
## Changelog
16381638

1639-
### vX.Y.Z
1639+
### v1.10.0
16401640

16411641
- Added the new [`evolved.lookup`](#evolvedlookup) and [`evolved.multi_lookup`](#evolvedmulti_lookup) functions that allow finding ids by their names
16421642
- Added a non-shrinking version of the [`evolved.collect_garbage`](#evolvedcollect_garbage) function that only collects garbage without shrinking storages

evolved.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
local evolved = {
22
__HOMEPAGE = 'https://github.com/BlackMATov/evolved.lua',
33
__DESCRIPTION = 'Evolved ECS (Entity-Component-System) for Lua',
4-
__VERSION = '1.9.0',
4+
__VERSION = '1.10.0',
55
__LICENSE = [[
66
MIT License
77
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
rockspec_format = "3.0"
2+
package = "evolved.lua"
3+
version = "1.10.0-0"
4+
source = {
5+
url = "git://github.com/BlackMATov/evolved.lua",
6+
tag = "v1.10.0",
7+
}
8+
description = {
9+
homepage = "https://github.com/BlackMATov/evolved.lua",
10+
summary = "Evolved ECS (Entity-Component-System) for Lua",
11+
detailed = [[
12+
`evolved.lua` is a fast and flexible ECS (Entity-Component-System) library for Lua.
13+
It is designed to be simple and easy to use, while providing all the features needed to create complex systems with blazing performance.
14+
]],
15+
license = "MIT",
16+
labels = {
17+
"ecs",
18+
"entity",
19+
"entities",
20+
"component",
21+
"components",
22+
"entity-component",
23+
"entity-component-system",
24+
},
25+
}
26+
dependencies = {
27+
"lua >= 5.1",
28+
}
29+
build = {
30+
type = "builtin",
31+
modules = {
32+
evolved = "evolved.lua",
33+
}
34+
}

0 commit comments

Comments
 (0)