summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2011-11-18 11:06:33 -0800
committerIan Romanick <ian.d.romanick@intel.com>2011-11-18 11:06:33 -0800
commit22ff4ec9693d6a4b03c770cffd0446ad4fff0ab4 (patch)
tree4a7af10710327a3810c0337e1225745bd8f17e1a
parent228da884c9bfe9258cc26e741f41b273aa3e668a (diff)
mesa: set version string to 7.11.2-devel
-rw-r--r--Makefile2
-rw-r--r--src/mesa/main/version.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b3bf8370168..cd4209043a5 100644
--- a/Makefile
+++ b/Makefile
@@ -183,7 +183,7 @@ ultrix-gcc:
# Rules for making release tarballs
-VERSION=7.11.1
+VERSION=7.11.2
DIRECTORY = Mesa-$(VERSION)
LIB_NAME = MesaLib-$(VERSION)
GLUT_NAME = MesaGLUT-$(VERSION)
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 83338b2978e..99f6e8823c2 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -34,8 +34,8 @@ struct gl_context;
/* Mesa version */
#define MESA_MAJOR 7
#define MESA_MINOR 11
-#define MESA_PATCH 1
-#define MESA_VERSION_STRING "7.11.1"
+#define MESA_PATCH 2
+#define MESA_VERSION_STRING "7.11.2-devel"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))