Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan@xamarin.com>2013-08-05 23:15:56 +0400
committerAlan McGovern <alan@xamarin.com>2013-08-05 23:15:56 +0400
commit6d2fca80f9f6193c8991eff79d4ed39be596459b (patch)
tree406d20f316bcf506402c571eba02726bfffd3a26
parentced4490ebd77e8262cfaad7108b78847fc2637c9 (diff)
[Core] Fix the build by using the right version numbers
The auto-bumping of version numbers did not take into account that this file moved and it also did not fail because the file was missing. If we ran our tests on windows this would not have gone unnoticed.
-rw-r--r--main/src/core/MonoDevelop.Core/BuildVariables.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Core/BuildVariables.cs b/main/src/core/MonoDevelop.Core/BuildVariables.cs
index ccb547bde0..fea7a05ee7 100644
--- a/main/src/core/MonoDevelop.Core/BuildVariables.cs
+++ b/main/src/core/MonoDevelop.Core/BuildVariables.cs
@@ -2,8 +2,8 @@ namespace MonoDevelop
{
public static class BuildInfo
{
- public const string Version = "4.1.7";
- public const string VersionLabel = "4.1.7";
+ public const string Version = "4.1.9";
+ public const string VersionLabel = "4.1.9";
public const string CompatVersion = "4.0";
}
}