diff options
author | Andreas Boll <[email protected]> | 2012-10-24 21:11:11 +0200 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2012-10-24 21:11:11 +0200 |
commit | d8571a1acf74f2ae3afe98dbdb4cae6e3501f932 (patch) | |
tree | 6ad5fa709de4fb5d9ef24119e44d933ee24bacd3 | |
parent | 47a509c0461e1bfb37a5d0ec0ef4bc65150221e1 (diff) |
mesa: Bump version number to 8.0.5
Signed-off-by: Andreas Boll <[email protected]>
-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
@@ -184,7 +184,7 @@ ultrix-gcc: # Rules for making release tarballs -PACKAGE_VERSION=8.0.4 +PACKAGE_VERSION=8.0.5 PACKAGE_DIR = Mesa-$(PACKAGE_VERSION) PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION) diff --git a/configs/default b/configs/default index 289aa0e21a0..3fe403b8f9a 100644 --- a/configs/default +++ b/configs/default @@ -10,7 +10,7 @@ CONFIG_NAME = default # Version info MESA_MAJOR=8 MESA_MINOR=0 -MESA_TINY=4 +MESA_TINY=5 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 6afeff4ea83..18e0b262c1c 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 4 -#define MESA_VERSION_STRING "8.0.4" +#define MESA_PATCH 5 +#define MESA_VERSION_STRING "8.0.5" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |