diff options
author | Andreas Boll <andreas.boll.dev@gmail.com> | 2013-02-21 15:26:23 +0100 |
---|---|---|
committer | Andreas Boll <andreas.boll.dev@gmail.com> | 2013-02-21 15:26:23 +0100 |
commit | 183a28a34a2184395e14d4682fbb425b5791eac6 (patch) | |
tree | a542522e6e4679d01b022c7066e0543f06c15c5e | |
parent | f84fe6aa2eac6984b77ca6da0c7e5a571b425827 (diff) |
mesa: Bump version to 9.0.3
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configs/default | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/mesa/main/version.h | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 946c6bbe00..fd1a8566e4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -54,7 +54,7 @@ distclean-local: # Rules for making release tarballs -PACKAGE_VERSION=9.0.2 +PACKAGE_VERSION=9.0.3 PACKAGE_DIR = Mesa-$(PACKAGE_VERSION) PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION) diff --git a/configs/default b/configs/default index 626b92492f..82cbf2aa21 100644 --- a/configs/default +++ b/configs/default @@ -10,7 +10,7 @@ CONFIG_NAME = default # Version info MESA_MAJOR=9 MESA_MINOR=0 -MESA_TINY=2 +MESA_TINY=3 MESA_VERSION = $(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY) # external projects. This should be useless now that we use libdrm. diff --git a/configure.ac b/configure.ac index 09ff8804fa..eb273b9423 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.2], +AC_INIT([Mesa], [9.0.3], [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 303f9a86b2..242c1399b3 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 0 -#define MESA_PATCH 2 -#define MESA_VERSION_STRING "9.0.2" +#define MESA_PATCH 3 +#define MESA_VERSION_STRING "9.0.3" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |