summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2013-07-01 13:58:56 -0700
committerIan Romanick <ian.d.romanick@intel.com>2013-07-01 13:58:56 -0700
commitc39591457bedfee2fedfee7c9bbea3afe6ecb1de (patch)
treedb3a1e49579049a9f22fa3835d146ba95c14c0e6
parent9975e7c223cc05dd58e6ca23a93360863d6f294c (diff)
mesa: Bump version to 9.1.4
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 0c398cb039e..99d74fa92c7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -36,7 +36,7 @@ check-local:
# Rules for making release tarballs
-PACKAGE_VERSION=9.1.3
+PACKAGE_VERSION=9.1.4
PACKAGE_DIR = Mesa-$(PACKAGE_VERSION)
PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION)
diff --git a/configure.ac b/configure.ac
index fa55ea87921..71b0366fbd5 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.3],
+AC_INIT([Mesa], [9.1.4],
[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 12e7409312c..7c8e42f76db 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 3
-#define MESA_VERSION_STRING "9.1.3"
+#define MESA_PATCH 4
+#define MESA_VERSION_STRING "9.1.4"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))