Comparing version 1.0.13 to 1.0.14
{ "name" : "semver" | ||
, "version" : "1.0.13" | ||
, "version" : "1.0.14" | ||
, "description" : "The semantic version parser used by npm." | ||
@@ -4,0 +4,0 @@ , "main" : "semver.js" |
@@ -17,3 +17,3 @@ ;(function (exports) { // nothing in here is node-specific. | ||
+ "([a-zA-Z-][a-zA-Z0-9-\.:]*)?)?)?" | ||
, xRange = "((?:<|>)?=?)?\\s*" + xRangePlain | ||
, xRange = "((?:<|>)=?)?\\s*" + xRangePlain | ||
, exprSpermy = "(?:~>?)"+xRange | ||
@@ -20,0 +20,0 @@ , expressions = exports.expressions = |
@@ -174,2 +174,7 @@ var tap = require("tap") | ||
, ["~v0.5.4-pre", "0.5.4"] | ||
, ["=0.7.x", "0.7.2"] | ||
, [">=0.7.x", "0.7.2"] | ||
, ["=0.7.x", "0.7.0-asdf"] | ||
, [">=0.7.x", "0.7.0-asdf"] | ||
, ["<=0.7.x", "0.6.2"] | ||
].forEach(function (v) { | ||
@@ -224,2 +229,5 @@ t.ok(satisfies(v[1], v[0]), v[0]+" satisfied by "+v[1]) | ||
, ["< 1", "1.0.0beta"] | ||
, ["=0.7.x", "0.8.2"] | ||
, [">=0.7.x", "0.6.2"] | ||
, ["<=0.7.x", "0.7.2"] | ||
].forEach(function (v) { | ||
@@ -226,0 +234,0 @@ t.ok(!satisfies(v[1], v[0]), v[0]+" not satisfied by "+v[1]) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
28385
663