Skip to content

Commit

Permalink
release: 1.0.2-0
Browse files Browse the repository at this point in the history
  • Loading branch information
dknight committed Nov 17, 2024
1 parent 3dc3a22 commit 3e4ae06
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
38 changes: 38 additions & 0 deletions rockspec/laura-1.0.2-0.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
rockspec_format = "3.0"
package = "Laura"
version = "1.0.2-0"
source = {
url = "git+https://github.com/dknight/laura.git",
branch = "1.0.2-0"
}
description = {
summary = "Unit-testing framework written purely in Lua.",
detailed = [[
Laura is a lightweight unit-testing framework for Lua with simplicity in
mind. The framework has no dependencies and works with Lua versions
5.1—5.4 and LuaJIT.
]],
homepage = "https://www.whoop.ee/laura",
license = "MIT",
issues_url = "https://github.com/dknight/laura/issues",
maintainer = "Dmitri Smirnov <https://www.whoop.ee/>",
labels = { "test", "unit-test" },
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
copy_directories = {
"test",
},
install = {
bin = {
"bin/laura",
},
},
}
test = {
type = "command",
command = "make test",
}
2 changes: 1 addition & 1 deletion src/laura/version.lua
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return "1.0.1-0"
return "1.0.2-0"

0 comments on commit 3e4ae06

Please sign in to comment.