summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-09-13 14:36:35 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-09-13 14:36:35 -0600
commit1145042fd226beff26ecc52508c14e8d9794b674 (patch)
treea568ba930f0152a40667c2feec41d8116d16093c
parent772131280ad224c3ad8cd134401e34c921ec1767 (diff)
Mesa: version bumps for 7.2 release
-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 6d33bcf9998..f69b6dd257c 100644
--- a/Makefile
+++ b/Makefile
@@ -174,10 +174,10 @@ ultrix-gcc:
# Rules for making release tarballs
-DIRECTORY = Mesa-7.1
-LIB_NAME = MesaLib-7.1
-DEMO_NAME = MesaDemos-7.1
-GLUT_NAME = MesaGLUT-7.1
+DIRECTORY = Mesa-7.2
+LIB_NAME = MesaLib-7.2
+DEMO_NAME = MesaDemos-7.2
+GLUT_NAME = MesaGLUT-7.2
MAIN_FILES = \
$(DIRECTORY)/Makefile* \
diff --git a/configs/default b/configs/default
index fe655e799b5..25f25d0f5c9 100644
--- a/configs/default
+++ b/configs/default
@@ -9,7 +9,7 @@ CONFIG_NAME = default
# Version info
MESA_MAJOR=7
-MESA_MINOR=1
+MESA_MINOR=2
MESA_TINY=0
MESA_VERSION = $(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY)
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 103eb9fb13e..de7f2ba0fd7 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -1,6 +1,6 @@
/*
* Mesa 3-D graphics library
- * Version: 7.1
+ * Version: 7.2
*
* Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
*
@@ -29,9 +29,9 @@
/* Mesa version */
#define MESA_MAJOR 7
-#define MESA_MINOR 1
+#define MESA_MINOR 2
#define MESA_PATCH 0
-#define MESA_VERSION_STRING "7.1"
+#define MESA_VERSION_STRING "7.2"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))