summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Boll <andreas.boll.dev@gmail.com>2012-09-07 23:49:01 +0200
committerKenneth Graunke <kenneth@whitecape.org>2012-09-09 03:00:17 -0700
commite81ee67b51651e99e7e8e52c1ccafc66835d57cd (patch)
tree0216857199c2c2a52663e958b9060fef98eeb919
parent10a96f4a4d3d3166fa6907d4b302e01ece5ccd7e (diff)
mesa: bump version to 9.1 (devel)
Now that branch 9.0 is created, bump the minor version in master. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
-rw-r--r--Makefile.am2
-rw-r--r--configs/default2
-rw-r--r--configure.ac2
-rw-r--r--src/mesa/main/version.h4
4 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index 36bcf1f0bd3..e411218eb2f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -52,7 +52,7 @@ distclean-local:
# Rules for making release tarballs
-PACKAGE_VERSION=9.0-devel
+PACKAGE_VERSION=9.1-devel
PACKAGE_DIR = Mesa-$(PACKAGE_VERSION)
PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION)
diff --git a/configs/default b/configs/default
index 5e4cc56785d..7b9e1c61a82 100644
--- a/configs/default
+++ b/configs/default
@@ -9,7 +9,7 @@ CONFIG_NAME = default
# Version info
MESA_MAJOR=9
-MESA_MINOR=0
+MESA_MINOR=1
MESA_TINY=0
MESA_VERSION = $(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY)
diff --git a/configure.ac b/configure.ac
index e2904b5d09c..e00bb001404 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.0],
+AC_INIT([Mesa], [9.1.0],
[https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
AC_CONFIG_AUX_DIR([bin])
AC_CANONICAL_HOST
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 5b2e85afd53..f0ba6f267fb 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -33,9 +33,9 @@ struct gl_context;
/* Mesa version */
#define MESA_MAJOR 9
-#define MESA_MINOR 0
+#define MESA_MINOR 1
#define MESA_PATCH 0
-#define MESA_VERSION_STRING "9.0-devel"
+#define MESA_VERSION_STRING "9.1-devel"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))