summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-09-27 10:30:13 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-09-27 10:30:13 -0600
commit029bb17770fa08312f0dac8a4e823faaadfc02f1 (patch)
treeb21457ca512a5b2167dc2d0019b3883562cd7811
parent7958bee6bef9d54e527196679140d0562311e2dd (diff)
bump versions to 7.0.2
-rw-r--r--Makefile8
-rw-r--r--configs/default2
-rw-r--r--src/mesa/main/version.h6
3 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 9a873ec417a..e05e0e647a6 100644
--- a/Makefile
+++ b/Makefile
@@ -165,10 +165,10 @@ ultrix-gcc:
# Rules for making release tarballs
-DIRECTORY = Mesa-7.0.1
-LIB_NAME = MesaLib-7.0.1
-DEMO_NAME = MesaDemos-7.0.1
-GLUT_NAME = MesaGLUT-7.0.1
+DIRECTORY = Mesa-7.0.2-rc1
+LIB_NAME = MesaLib-7.0.2-rc1
+DEMO_NAME = MesaDemos-7.0.2-rc1
+GLUT_NAME = MesaGLUT-7.0.2-rc1
MAIN_FILES = \
$(DIRECTORY)/Makefile* \
diff --git a/configs/default b/configs/default
index 81f0338b271..275b060ec9e 100644
--- a/configs/default
+++ b/configs/default
@@ -10,7 +10,7 @@ CONFIG_NAME = default
# Version info
MESA_MAJOR=7
MESA_MINOR=0
-MESA_TINY=1
+MESA_TINY=2
# external projects. This should be useless now that we use libdrm.
DRM_SOURCE_PATH=$(TOP)/../drm
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 2c84579918d..2d3c68bca99 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -1,6 +1,6 @@
/*
* Mesa 3-D graphics library
- * Version: 7.0.1
+ * Version: 7.0.2
*
* Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
*
@@ -30,8 +30,8 @@
/* Mesa version */
#define MESA_MAJOR 7
#define MESA_MINOR 0
-#define MESA_PATCH 1
-#define MESA_VERSION_STRING "7.0.1"
+#define MESA_PATCH 2
+#define MESA_VERSION_STRING "7.0.2"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))