This commit is contained in:
BlackMATov
2025-11-24 13:45:55 +07:00
parent 1c02ba5468
commit 5895c6ee8f
3 changed files with 40 additions and 5 deletions

View File

@@ -60,7 +60,7 @@
- [Chunk](#chunk) - [Chunk](#chunk)
- [Builder](#builder) - [Builder](#builder)
- [Changelog](#changelog) - [Changelog](#changelog)
- [vX.X.X](#vxxx) - [v1.5.0](#v150)
- [v1.4.0](#v140) - [v1.4.0](#v140)
- [v1.3.0](#v130) - [v1.3.0](#v130)
- [v1.2.0](#v120) - [v1.2.0](#v120)
@@ -1306,10 +1306,11 @@ builder_mt:destruction_policy :: id -> builder
## Changelog ## Changelog
### vX.X.X ### v1.5.0
- The spawn and clone operations with defaults have been significantly optimized - Added a little [LÖVE](https://love2d.org) example;
- Added basic [Teal](https://github.com/teal-language) type definitions, thanks to [@p0sel0k](https://github.com/p0sel0k) - The spawn and clone operations with defaults have been significantly optimized;
- Added basic [Teal](https://github.com/teal-language) type definitions, thanks to [@p0sel0k](https://github.com/p0sel0k).
### v1.4.0 ### v1.4.0

View File

@@ -1,7 +1,7 @@
local evolved = { local evolved = {
__HOMEPAGE = 'https://github.com/BlackMATov/evolved.lua', __HOMEPAGE = 'https://github.com/BlackMATov/evolved.lua',
__DESCRIPTION = 'Evolved ECS (Entity-Component-System) for Lua', __DESCRIPTION = 'Evolved ECS (Entity-Component-System) for Lua',
__VERSION = '1.4.0', __VERSION = '1.5.0',
__LICENSE = [[ __LICENSE = [[
MIT License MIT License

View File

@@ -0,0 +1,34 @@
rockspec_format = "3.0"
package = "evolved.lua"
version = "1.5.0-0"
source = {
url = "git://github.com/BlackMATov/evolved.lua",
tag = "v1.5.0",
}
description = {
homepage = "https://github.com/BlackMATov/evolved.lua",
summary = "Evolved ECS (Entity-Component-System) for Lua",
detailed = [[
`evolved.lua` is a fast and flexible ECS (Entity-Component-System) library for Lua.
It is designed to be simple and easy to use, while providing all the features needed to create complex systems with blazing performance.
]],
license = "MIT",
labels = {
"ecs",
"entity",
"entities",
"component",
"components",
"entity-component",
"entity-component-system",
},
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
evolved = "evolved.lua",
}
}