aboutsummaryrefslogtreecommitdiffstats
path: root/core/version.moon
blob: 6cee1b158f8710a1836f95f604385f7ec83a77b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
----
-- `alive` source code version information.
--
-- @module version

--- exports
-- @table exports
-- @tfield string tag the last versions git tag
-- @tfield string web the repo web URL
-- @tfield string repo the git repo URL
-- @tfield string release the web URL of this release
{
  tag: "v0.1-rc2"
  web: "https://github.com/s-ol/alivecoding"
  repo: "https://github.com/s-ol/alivecoding.git"
  release: "https://github.com/s-ol/alivecoding/releases/tag/v0.1-rc2"
}