diff options
author | Brian Paul <[email protected]> | 2011-06-29 07:37:11 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-06-29 07:38:10 -0600 |
commit | e17f2bad3abf8e08b74871c71566dea5f1ce4bf7 (patch) | |
tree | bbd7c4396ea5717742e32026d163449255c71213 | |
parent | 600e01e758c9eed44cd85957ee476804c1c35f8b (diff) |
mesa: bump version to 7.12 (devel)
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | configs/default | 2 | ||||
-rw-r--r-- | src/mesa/main/version.h | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -183,7 +183,7 @@ ultrix-gcc: # Rules for making release tarballs -VERSION=7.11-devel +VERSION=7.12-devel DIRECTORY = Mesa-$(VERSION) LIB_NAME = MesaLib-$(VERSION) GLUT_NAME = MesaGLUT-$(VERSION) diff --git a/configs/default b/configs/default index e9f493a17f1..132ccbee3cf 100644 --- a/configs/default +++ b/configs/default @@ -9,7 +9,7 @@ CONFIG_NAME = default # Version info MESA_MAJOR=7 -MESA_MINOR=11 +MESA_MINOR=12 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 2e6335846e3..0a0512c339d 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -33,9 +33,9 @@ struct gl_context; /* Mesa version */ #define MESA_MAJOR 7 -#define MESA_MINOR 11 +#define MESA_MINOR 12 #define MESA_PATCH 0 -#define MESA_VERSION_STRING "7.11-devel" +#define MESA_VERSION_STRING "7.12-devel" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |