summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-06-16 10:18:53 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-06-16 10:19:29 -0600
commit6ce6dc961b3fcb8b687d79565adf793d81aac37d (patch)
treea52d42d9e61e4ffc60187dbe82857e49c038dea5
parent186883611edfd867f7ebafd06aa61ac575bec0f8 (diff)
bump version to 7.0.4
-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 a010e42ed65..9d3c8f24fee 100644
--- a/Makefile
+++ b/Makefile
@@ -172,10 +172,10 @@ ultrix-gcc:
# Rules for making release tarballs
-DIRECTORY = Mesa-7.0.3
-LIB_NAME = MesaLib-7.0.3
-DEMO_NAME = MesaDemos-7.0.3
-GLUT_NAME = MesaGLUT-7.0.3
+DIRECTORY = Mesa-7.0.4
+LIB_NAME = MesaLib-7.0.4
+DEMO_NAME = MesaDemos-7.0.4
+GLUT_NAME = MesaGLUT-7.0.4
MAIN_FILES = \
$(DIRECTORY)/Makefile* \
diff --git a/configs/default b/configs/default
index eb2eb8b7e6b..1badafd3a60 100644
--- a/configs/default
+++ b/configs/default
@@ -10,7 +10,7 @@ CONFIG_NAME = default
# Version info
MESA_MAJOR=7
MESA_MINOR=0
-MESA_TINY=3
+MESA_TINY=4
# 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 0bf7557e904..5017198b9f0 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.3
+ * Version: 7.0.4
*
* Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
*
@@ -30,8 +30,8 @@
/* Mesa version */
#define MESA_MAJOR 7
#define MESA_MINOR 0
-#define MESA_PATCH 3
-#define MESA_VERSION_STRING "7.0.3"
+#define MESA_PATCH 4
+#define MESA_VERSION_STRING "7.0.4"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))