summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2013-04-30 15:17:47 -0700
committerIan Romanick <ian.d.romanick@intel.com>2013-04-30 15:17:47 -0700
commitf9abbcacaabadae81a5841d4623168977273e8df (patch)
treef92ba123fa09abfe2a563a9b0a3ab66377e87056
parent251c87d8842c8a44d0c914c471356e487cd80031 (diff)
mesa: Bump version to 9.1.2
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac2
-rw-r--r--src/mesa/main/version.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index c7e2f6cadb2..558b965a57f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -36,7 +36,7 @@ check-local:
# Rules for making release tarballs
-PACKAGE_VERSION=9.1.1
+PACKAGE_VERSION=9.1.2
PACKAGE_DIR = Mesa-$(PACKAGE_VERSION)
PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION)
diff --git a/configure.ac b/configure.ac
index 1c9d606fcdb..b9fcb0b7930 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.1],
+AC_INIT([Mesa], [9.1.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 cd0b0a5737c..c22f2c883ee 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 1
-#define MESA_VERSION_STRING "9.1.1"
+#define MESA_PATCH 2
+#define MESA_VERSION_STRING "9.1.2"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))