summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2009-12-16 09:15:09 -0800
committerIan Romanick <ian.d.romanick@intel.com>2009-12-16 09:15:09 -0800
commitbf75ee9ccc6bb00ee0251997afcb522ead68f170 (patch)
tree748f4101cfbe438354edb8f6ffc7f96b63438670
parent006a526edb0f5a67679309a867a1af22d94e1687 (diff)
mesa: set version string to 7.7-rc3mesa_7_7_rc3
-rw-r--r--Makefile2
-rw-r--r--src/mesa/main/version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fbe98906861..e927cb96851 100644
--- a/Makefile
+++ b/Makefile
@@ -182,7 +182,7 @@ ultrix-gcc:
# Rules for making release tarballs
-VERSION=7.7-rc2
+VERSION=7.7
DIRECTORY = Mesa-$(VERSION)
LIB_NAME = MesaLib-$(VERSION)
DEMO_NAME = MesaDemos-$(VERSION)
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index fa233b9f308..4f92353533e 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -32,7 +32,7 @@
#define MESA_MAJOR 7
#define MESA_MINOR 7
#define MESA_PATCH 0
-#define MESA_VERSION_STRING "7.7-rc2"
+#define MESA_VERSION_STRING "7.7-rc3"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))