Skip to content

Commit

Permalink
bump to v0.1.3-0
Browse files Browse the repository at this point in the history
  • Loading branch information
thislight committed Feb 21, 2022
1 parent 418f421 commit 581222b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions away-git-0.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@ build = {
['away.debugger'] = "away/debugger/init.lua",
['away.debugger.mocks'] = "away/debugger/mocks.lua",
['away.promise'] = "away/promise.lua",
['away.hrt'] = "away/hrt.lua",
['away.series'] = "away/series.lua",
}
}
26 changes: 26 additions & 0 deletions rockspecs/away-0.1.3-0.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "away"
version = "0.1.3-0"
source = {
url = "git+https://github.com/thislight/away.git",
tag = "v0.1.3-0"
}
description = {
summary = "Portable asynchronous framework",
detailed = [[This library provides a event-based coroutine scheduler.]],
homepage = "https://github.com/thislight/away",
license = "GPL-3"
}
dependencies = {
"lua >=5.3, <=5.4"
}
build = {
type = "builtin",
modules = {
away = "away.lua",
['away.debugger'] = "away/debugger/init.lua",
['away.debugger.mocks'] = "away/debugger/mocks.lua",
['away.promise'] = "away/promise.lua",
['away.hrt'] = "away/hrt.lua",
['away.series'] = "away/series.lua",
}
}

0 comments on commit 581222b

Please sign in to comment.