diff options
author | Carl Worth <[email protected]> | 2013-08-01 14:15:38 -0700 |
---|---|---|
committer | Carl Worth <[email protected]> | 2013-08-01 14:15:38 -0700 |
commit | 985e25402f4fb86ebd03741a0bc554e399a7b974 (patch) | |
tree | fd82b1a13c63d65fb351530cfd4477c67ad5fc3b | |
parent | a33ecd80749902ca72f4a42feadb509eae551e1b (diff) |
Bump version to 9.1.6
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/mesa/main/version.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 9c03dd8119a..fba8556cbf5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,7 +36,7 @@ check-local: # Rules for making release tarballs -PACKAGE_VERSION=9.1.5 +PACKAGE_VERSION=9.1.6 PACKAGE_DIR = Mesa-$(PACKAGE_VERSION) PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION) diff --git a/configure.ac b/configure.ac index 452b24faa60..550ee05fc4b 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.5], +AC_INIT([Mesa], [9.1.6], [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 a069798407f..6eab691ab0d 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -35,7 +35,7 @@ struct gl_context; #define MESA_MAJOR 9 #define MESA_MINOR 1 #define MESA_PATCH 4 -#define MESA_VERSION_STRING "9.1.5" +#define MESA_VERSION_STRING "9.1.6" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |