summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2012-10-08 14:56:11 -0700
committerIan Romanick <ian.d.romanick@intel.com>2012-10-08 14:58:35 -0700
commite5fdeef1e08b55acd48dc68f0cc8fe213f2820b8 (patch)
treec2e3ced1916f41a34d27fbf36355ffc42e0b9462
parenta8d0652c04ae4249608b37f06b5a8b3dca3774a9 (diff)
mesa: Bump version number to 9.0 (final)mesa-9.0
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
-rw-r--r--Makefile.am2
-rw-r--r--docs/relnotes-9.0.html2
-rw-r--r--src/mesa/main/version.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 190246c2fe9..9a0c1dd1440 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -54,7 +54,7 @@ distclean-local:
# Rules for making release tarballs
-PACKAGE_VERSION=9.0-devel
+PACKAGE_VERSION=9.0
PACKAGE_DIR = Mesa-$(PACKAGE_VERSION)
PACKAGE_NAME = MesaLib-$(PACKAGE_VERSION)
diff --git a/docs/relnotes-9.0.html b/docs/relnotes-9.0.html
index ff31fbbec39..d72c5bb247a 100644
--- a/docs/relnotes-9.0.html
+++ b/docs/relnotes-9.0.html
@@ -7,7 +7,7 @@
</head>
<body>
-<h1>Mesa 9.0 Release Notes / date TBD</h1>
+<h1>Mesa 9.0 Release Notes / October 8th, 2012</h1>
<p>
Mesa 9.0 is a new development release.
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 5b2e85afd53..85701ca12d8 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 0
#define MESA_PATCH 0
-#define MESA_VERSION_STRING "9.0-devel"
+#define MESA_VERSION_STRING "9.0"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))