diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | docs/news.html | 8 | ||||
-rw-r--r-- | src/mesa/main/version.h | 2 |
3 files changed, 10 insertions, 2 deletions
@@ -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 2f3f143fcd..b3fb8b5569 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 59f62ebd6c..6fc45ced07 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)) |