diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2010-09-27 10:17:11 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-09-27 10:17:11 -0700 |
commit | 61653b488da76ee1ca4f77363e222d3b717dd865 (patch) | |
tree | 36f3e05a013a110254240df2f7bcfcaecf512488 | |
parent | 7e62335f35d4ed1ea269be801fbb95f2587f3ebc (diff) |
mesa: set version string to 7.9-rc1mesa-7.9-rc1
-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)) |