Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release-v1.0'
Browse files Browse the repository at this point in the history
* origin/release-v1.0:
  Releases no longer *have* to be release candidates.
  CmdLine: List of opens on a too many options kraken formatted more nicely.
  • Loading branch information
pjf committed Nov 14, 2014
2 parents 19c8659 + d169ede commit cb731cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CKAN/CmdLine/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -409,9 +409,11 @@ private static int Install(InstallOptions options)

foreach (CkanModule mod in ex.modules)
{
User.WriteLine("* {0}", mod.identifier);
User.WriteLine("* {0} ({1})", mod.identifier, mod.name);
}

User.WriteLine(""); // Looks tidier.

return Exit.ERROR;
}
catch (FileExistsKraken ex)
Expand Down
2 changes: 1 addition & 1 deletion CKAN/Tests/CKAN/Meta.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void ReleaseNumber()
// release candidates.

Assert.IsTrue(
Regex.IsMatch(version.ToString(), @"^v(?:0.\d+|\d+\.\d+\.\d+(?:-RC\d+))$"),
Regex.IsMatch(version.ToString(), @"^v(?:0.\d+|\d+\.\d+\.\d+(?:-RC\d+)?)$"),
version.ToString());
}
}
Expand Down

0 comments on commit cb731cb

Please sign in to comment.