summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-09-27 10:17:11 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-09-27 10:17:11 -0700
commit61653b488da76ee1ca4f77363e222d3b717dd865 (patch)
tree36f3e05a013a110254240df2f7bcfcaecf512488
parent7e62335f35d4ed1ea269be801fbb95f2587f3ebc (diff)
mesa: set version string to 7.9-rc1mesa-7.9-rc1
-rw-r--r--Makefile2
-rw-r--r--docs/news.html8
-rw-r--r--src/mesa/main/version.h2
3 files changed, 10 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 16c505a9c53..508738a7ba9 100644
--- a/Makefile
+++ b/Makefile
@@ -180,7 +180,7 @@ ultrix-gcc:
# Rules for making release tarballs
-VERSION=7.9-devel
+VERSION=7.9-rc1
DIRECTORY = Mesa-$(VERSION)
LIB_NAME = MesaLib-$(VERSION)
GLUT_NAME = MesaGLUT-$(VERSION)
diff --git a/docs/news.html b/docs/news.html
index 2f3f143fcdc..b3fb8b5569d 100644
--- a/docs/news.html
+++ b/docs/news.html
@@ -11,6 +11,14 @@
<H1>News</H1>
+<h2>September 27, 2010</h2>
+
+<p>
+<a href="relnotes-7.9.0.html">Mesa 7.9.0-rc1</a> is released. This is a
+release candidate for the 7.9 development release.
+</p>
+
+
<h2>June 16, 2010</h2>
<p>
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index 59f62ebd6c5..6fc45ced076 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -35,7 +35,7 @@
#define MESA_MAJOR 7
#define MESA_MINOR 9
#define MESA_PATCH 0
-#define MESA_VERSION_STRING "7.9-devel"
+#define MESA_VERSION_STRING "7.9-rc1"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))