Skip to content

Commit 986cd9e

Browse files
committed
release: v0.4.0
1 parent 90f76ea commit 986cd9e

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.4.0 (January 31, 2025)
2+
* feat(config): support runtime version 3
3+
14
## 0.3.2 (May 8, 2023)
25
* feat(generic-can): pass msg_ids as coma-separated string
36

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
rockspec_format = '3.0'
2+
package = 'enapter-ucm'
3+
local rock_version = '0.4.0'
4+
local rock_release = '1'
5+
6+
version = ('%s-%s'):format(rock_version, rock_release)
7+
8+
source = {
9+
url = 'git+https://github.com/Enapter/enapter-ucm.lua.git',
10+
branch = rock_version == 'scm' and 'main' or nil,
11+
tag = rock_version ~= 'scm' and 'v' .. rock_version or nil,
12+
}
13+
14+
description = {
15+
homepage = 'http://developers.enapter.com',
16+
license = 'MIT',
17+
}
18+
19+
dependencies = {
20+
'lua ~> 5.3',
21+
}
22+
23+
test_dependencies = {
24+
'busted',
25+
'luacov',
26+
'luacov-reporter-lcov',
27+
'inspect',
28+
}
29+
30+
build = {
31+
type = 'builtin',
32+
}
33+
34+
test = {
35+
type = 'busted',
36+
}

0 commit comments

Comments
 (0)