diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2013-03-19 17:14:38 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2013-03-19 17:14:38 -0700 |
commit | 1e5e805fd089f644f254b2b16d49ba3e27c1a53c (patch) | |
tree | 9e9d6e0496512da5292bf02ff8c5c15bf23123ce | |
parent | 9e36e41034a9dce3fe3f03650f4f54f06dcbf10f (diff) |
mesa: Bump version to 9.1.1mesa-9.1.1
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/mesa/main/version.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index a1f7bced44..c7e2f6cadb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,7 +36,7 @@ check-local: # Rules for making release tarballs -PACKAGE_VERSION=9.1 +PACKAGE_VERSION=9.1.1 PACKAGE_DIR = Mesa-$(PACKAGE_VERSION) PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION) diff --git a/configure.ac b/configure.ac index d75cf65e19..4a98996e59 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.1.0], +AC_INIT([Mesa], [9.1.1], [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 a98aadfb1e..cd0b0a5737 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 1 -#define MESA_PATCH 0 -#define MESA_VERSION_STRING "9.1" +#define MESA_PATCH 1 +#define MESA_VERSION_STRING "9.1.1" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |