Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gedaiu committed Mar 23, 2018
1 parent b9ff1c7 commit 595d2ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion runner/trial/command.d
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import std.datetime;
import std.path;
import std.array;
import trial.description;
import trial.version_;

import dub.internal.vibecompat.data.json;

Expand Down Expand Up @@ -83,7 +84,7 @@ class TrialProject : Project {
tcinfo.versions[""] ~= "VibeCustomMain";

if(getBasePackageName(project.rootPackage.name) != "trial" && m_description.configuration != "trial") {
auto trialPackage = getPackage("trial:lifecycle", Dependency("~>0.7.0-alpha.1"));
auto trialPackage = getPackage("trial:lifecycle", Dependency("~>" ~ trialVersion));
enforce(trialPackage !is null, "Can not get the trial lifecycle package!");

tcinfo.dependencies["trial:lifecycle"] = Dependency(trialPackage.version_);
Expand Down
2 changes: 1 addition & 1 deletion runner/trial/version_.d
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module trial.version_;

enum trialVersion = "v0.6.3-dev";
enum trialVersion = "0.7.0-alpha.2";

0 comments on commit 595d2ec

Please sign in to comment.