summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2012-07-10 08:28:32 -0700
committerIan Romanick <ian.d.romanick@intel.com>2012-07-10 08:28:32 -0700
commit7c2225b026162beedf3302a3515eaea2f6f7e4f8 (patch)
treee297eafa0c2e0f08f405d935d9905541763b0223
parent827c99e1a025c588f1ab5b42bf49a681047d8136 (diff)
mesa: Bump version number to 8.0.4
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
-rw-r--r--Makefile2
-rw-r--r--configs/default2
-rw-r--r--src/mesa/main/version.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index be73f10085f..61f4af677c3 100644
--- a/Makefile
+++ b/Makefile
@@ -184,7 +184,7 @@ ultrix-gcc:
# Rules for making release tarballs
-PACKAGE_VERSION=8.0.3
+PACKAGE_VERSION=8.0.4
PACKAGE_DIR = Mesa-$(PACKAGE_VERSION)
PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION)
diff --git a/configs/default b/configs/default
index 5e703e2f557..289aa0e21a0 100644
--- a/configs/default
+++ b/configs/default
@@ -10,7 +10,7 @@ CONFIG_NAME = default
# Version info
MESA_MAJOR=8
MESA_MINOR=0
-MESA_TINY=3
+MESA_TINY=4
MESA_VERSION = $(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY)
# external projects. This should be useless now that we use libdrm.
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index d9ef3d0283c..6afeff4ea83 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 8
#define MESA_MINOR 0
-#define MESA_PATCH 3
-#define MESA_VERSION_STRING "8.0.3"
+#define MESA_PATCH 4
+#define MESA_VERSION_STRING "8.0.4"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))