From 2b2ab2b3eab6f016dc7027ee4610f5f9500a0ac7 Mon Sep 17 00:00:00 2001 From: Andreas Boll Date: Sun, 20 Jan 2013 15:18:44 +0100 Subject: [PATCH] mesa: Bump version to 9.0.2 --- Makefile.am | 2 +- configs/default | 2 +- configure.ac | 2 +- src/mesa/main/version.h | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index 72445b4..946c6bb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -54,7 +54,7 @@ distclean-local: # Rules for making release tarballs -PACKAGE_VERSION=9.0.1 +PACKAGE_VERSION=9.0.2 PACKAGE_DIR = Mesa-$(PACKAGE_VERSION) PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION) diff --git a/configs/default b/configs/default index e5d4705..626b924 100644 --- a/configs/default +++ b/configs/default @@ -10,7 +10,7 @@ CONFIG_NAME = default # Version info MESA_MAJOR=9 MESA_MINOR=0 -MESA_TINY=1 +MESA_TINY=2 MESA_VERSION = $(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY) # external projects. This should be useless now that we use libdrm. diff --git a/configure.ac b/configure.ac index e2caabe..682e0a5 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ dnl Tell the user about autoconf.html in the --help output m4_divert_once([HELP_END], [ See docs/autoconf.html for more details on the options for Mesa.]) -AC_INIT([Mesa], [9.0.1], +AC_INIT([Mesa], [9.0.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa]) AC_CONFIG_AUX_DIR([bin]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index a1cc438..303f9a8 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 9 #define MESA_MINOR 0 -#define MESA_PATCH 1 -#define MESA_VERSION_STRING "9.0.1" +#define MESA_PATCH 2 +#define MESA_VERSION_STRING "9.0.2" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) -- 2.7.4