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
path: root/main
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2010-04-28 21:06:15 +0400
committerLluis Sanchez <lluis@novell.com>2010-04-28 21:06:15 +0400
commitd645b36795fa07d3e6856bd4f2cb031c12fec0a1 (patch)
treebcf7d0d4a2e794dae7fd4684c26c933437e788a4 /main
parentdf86d4b420ab8fae7de8ad86383eab83ede77758 (diff)
* configure.in:
* src/core/MonoDevelop.Ide/BuildVariables.cs: Require Mono 2.6.1. Updated version label. svn path=/trunk/monodevelop/; revision=156351
Diffstat (limited to 'main')
-rw-r--r--main/ChangeLog4
-rw-r--r--main/configure.in4
-rw-r--r--main/src/core/MonoDevelop.Ide/BuildVariables.cs2
-rw-r--r--main/src/core/MonoDevelop.Ide/ChangeLog5
4 files changed, 12 insertions, 3 deletions
diff --git a/main/ChangeLog b/main/ChangeLog
index 49a12c741a..cac497f216 100644
--- a/main/ChangeLog
+++ b/main/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-28 Lluis Sanchez Gual <lluis@novell.com>
+
+ * configure.in: Require Mono 2.6.1. Updated version label.
+
2010-03-22 Lluis Sanchez Gual <lluis@novell.com>
* configure.in: Bumped MD version.
diff --git a/main/configure.in b/main/configure.in
index 0853e5327c..bae482e91e 100644
--- a/main/configure.in
+++ b/main/configure.in
@@ -7,7 +7,7 @@ AM_MAINTAINER_MODE
AC_SUBST(ACLOCAL_FLAGS)
ASSEMBLY_VERSION=2.4.0.0
-PACKAGE_VERSION_LABEL="2.4 Alpha 1"
+PACKAGE_VERSION_LABEL="2.4 Beta 1"
AC_PATH_PROG(MONO, mono)
AC_PATH_PROG(MCS, gmcs)
@@ -77,7 +77,7 @@ if test "x$MSGMERGE" = "xno"; then
AC_MSG_ERROR([You need to install msgmerge from intltool])
fi
-MONO_REQUIRED_VERSION=2.4.2
+MONO_REQUIRED_VERSION=2.6.1
PKG_CHECK_MODULES(UNMANAGED_DEPENDENCIES_MONO,mono >= $MONO_REQUIRED_VERSION, has_mono=true, has_mono=false)
if test "x$has_mono" = "xfalse"; then
diff --git a/main/src/core/MonoDevelop.Ide/BuildVariables.cs b/main/src/core/MonoDevelop.Ide/BuildVariables.cs
index 85c1464719..e4d9e716e5 100644
--- a/main/src/core/MonoDevelop.Ide/BuildVariables.cs
+++ b/main/src/core/MonoDevelop.Ide/BuildVariables.cs
@@ -3,7 +3,7 @@ namespace MonoDevelop.Ide
internal class BuildVariables
{
public static string PackageVersion = "2.3";
- public static string PackageVersionLabel = "2.4 Alpha 1";
+ public static string PackageVersionLabel = "2.4 Beta 1";
}
}
diff --git a/main/src/core/MonoDevelop.Ide/ChangeLog b/main/src/core/MonoDevelop.Ide/ChangeLog
index b39cd6b091..bd907c3dbb 100644
--- a/main/src/core/MonoDevelop.Ide/ChangeLog
+++ b/main/src/core/MonoDevelop.Ide/ChangeLog
@@ -1,5 +1,10 @@
2010-04-28 Lluis Sanchez Gual <lluis@novell.com>
+ * BuildVariables.cs: Require Mono 2.6.1. Updated version
+ label.
+
+2010-04-28 Lluis Sanchez Gual <lluis@novell.com>
+
* MonoDevelop.Ide\IdeStartup.cs: Add missing unchecked block.
2010-04-28 Mike Krüger <mkrueger@novell.com>