Fix #6 Pre-1.0 upgrades should not be safe

This commit is contained in:
Paul Liverman III
2016-08-02 15:39:05 -07:00
parent 35c69808f5
commit c24516b129
3 changed files with 40 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
package = "semver"
version = "1.2.1-1"
source = {
url = "git://github.com/kikito/semver.lua.git",
}
description = {
summary = "An implementation of semantic versioning (semver.org 2.0.0) in Lua",
detailed = [[
See details in http://semver.org
]],
license = "MIT",
homepage = "https://github.com/kikito/semver.lua"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "none",
install = {
lua = {
"semver.lua"
},
}
}