diff options
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | docs/news.html | 7 | ||||
-rw-r--r-- | docs/relnotes-7.0.3.html | 2 | ||||
-rw-r--r-- | src/mesa/main/version.h | 2 |
4 files changed, 13 insertions, 6 deletions
@@ -167,10 +167,10 @@ ultrix-gcc: # Rules for making release tarballs -DIRECTORY = Mesa-7.0.3-rc3 -LIB_NAME = MesaLib-7.0.3-rc3 -DEMO_NAME = MesaDemos-7.0.3-rc3 -GLUT_NAME = MesaGLUT-7.0.3-rc3 +DIRECTORY = Mesa-7.0.3 +LIB_NAME = MesaLib-7.0.3 +DEMO_NAME = MesaDemos-7.0.3 +GLUT_NAME = MesaGLUT-7.0.3 MAIN_FILES = \ $(DIRECTORY)/Makefile* \ diff --git a/docs/news.html b/docs/news.html index 13e43f1abe..c68f1866f7 100644 --- a/docs/news.html +++ b/docs/news.html @@ -11,6 +11,13 @@ <H1>News</H1> +<h2>April 4, 2008</h2> +<p> +<a href="relnotes-7.0.3.html">Mesa 7.0.3</a> is released. +This is a bug-fix release. +</p> + + <h2>November 13, 2007</h2> <p> diff --git a/docs/relnotes-7.0.3.html b/docs/relnotes-7.0.3.html index 0f365af10a..0b8a56f6dd 100644 --- a/docs/relnotes-7.0.3.html +++ b/docs/relnotes-7.0.3.html @@ -8,7 +8,7 @@ <body bgcolor="#eeeeee"> -<H1>Mesa 7.0.3 Release Notes / March TBD, 2008</H1> +<H1>Mesa 7.0.3 Release Notes / April 4, 2008</H1> <p> Mesa 7.0.3 is a stable release with bug fixes since version 7.0.2. diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h index ce6e2021e7..0bf7557e90 100644 --- a/src/mesa/main/version.h +++ b/src/mesa/main/version.h @@ -31,7 +31,7 @@ #define MESA_MAJOR 7 #define MESA_MINOR 0 #define MESA_PATCH 3 -#define MESA_VERSION_STRING "7.0.3-rc3" +#define MESA_VERSION_STRING "7.0.3" /* To make version comparison easy */ #define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |