summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/version.h
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2012-01-06 16:54:11 -0800
committerKenneth Graunke <[email protected]>2012-01-09 12:01:55 -0800
commita53cb348baa8b6f3142ac0bda2c339ee1ba1ea86 (patch)
treeead2194e2a841e1a01c13a9477b5ee49b5096d7e /src/mesa/main/version.h
parentb82a2a848c2f614be6186f411bc366ebe2f189bc (diff)
mesa: Bump version to 8.0 (devel)
Also update the release notes to mention that Mesa 8.0 implements OpenGL 3.0. Signed-off-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/version.h')
-rw-r--r--src/mesa/main/version.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 32e141f0e0e..d288c4d558f 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -32,10 +32,10 @@ struct gl_context;
/* Mesa version */
-#define MESA_MAJOR 7
-#define MESA_MINOR 12
+#define MESA_MAJOR 8
+#define MESA_MINOR 0
#define MESA_PATCH 0
-#define MESA_VERSION_STRING "7.12-devel"
+#define MESA_VERSION_STRING "8.0-devel"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))