diff options
author | Ian Romanick <[email protected]> | 2013-02-22 13:50:09 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2013-02-22 17:46:23 -0800 |
commit | 3ea699ff3c6d946a5c58b01f301e01ada19408ef (patch) | |
tree | 1ae2835eb95bee07d94614f404a2e04ef967d4a6 | |
parent | ea38e7e2e3d00b003172d94c44cd4b520c47d4df (diff) |
mesa: Bump version to 9.1 (final)
Signed-off-by: Ian Romanick <[email protected]>
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | src/mesa/main/version.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index be42097bea6..a1f7bced444 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,7 +36,7 @@ check-local: # Rules for making release tarballs -PACKAGE_VERSION=9.1-rc2 +PACKAGE_VERSION=9.1 PACKAGE_DIR = Mesa-$(PACKAGE_VERSION) PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION) diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index a99381a92ad..a98aadfb1e7 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 0 -#define MESA_VERSION_STRING "9.1-rc2" +#define MESA_VERSION_STRING "9.1" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |