From: Ian Romanick Date: Thu, 16 Feb 2012 23:28:29 +0000 (-0800) Subject: mesa: Update the version string to 8.1-devel X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f16c40d2f6ee8174545bb1d1e999525a37c0178b;p=mesa.git mesa: Update the version string to 8.1-devel The numeric version was updated in 46883e0. Signed-off-by: Ian Romanick --- diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index 35bf5339233..94a9855d981 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -35,7 +35,7 @@ struct gl_context; #define MESA_MAJOR 8 #define MESA_MINOR 1 #define MESA_PATCH 0 -#define MESA_VERSION_STRING "8.0-devel" +#define MESA_VERSION_STRING "8.1-devel" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))