summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-08-25 14:09:14 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-08-25 14:09:14 -0600
commite794f496c61a285566e56ac044b5406bf69ede56 (patch)
treebc3c936bfc4c720c99332367d980b121b5391531
parent68067c66d3ebce1d0455475f1d6394b064392382 (diff)
mesa: assorted updates/prep for 7.1 release
-rw-r--r--Makefile8
-rw-r--r--docs/download.html2
-rw-r--r--docs/news.html10
-rw-r--r--docs/relnotes-7.1.html14
-rw-r--r--src/mesa/main/version.h4
5 files changed, 30 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 2e86d11738..6d33bcf999 100644
--- a/Makefile
+++ b/Makefile
@@ -174,10 +174,10 @@ ultrix-gcc:
# Rules for making release tarballs
-DIRECTORY = Mesa-7.1-rc4
-LIB_NAME = MesaLib-7.1-rc4
-DEMO_NAME = MesaDemos-7.1-rc4
-GLUT_NAME = MesaGLUT-7.1-rc4
+DIRECTORY = Mesa-7.1
+LIB_NAME = MesaLib-7.1
+DEMO_NAME = MesaDemos-7.1
+GLUT_NAME = MesaGLUT-7.1
MAIN_FILES = \
$(DIRECTORY)/Makefile* \
diff --git a/docs/download.html b/docs/download.html
index 4a9804955a..2d587f35f9 100644
--- a/docs/download.html
+++ b/docs/download.html
@@ -9,6 +9,8 @@
<H1>Downloading</H1>
<p>
+Current development release: <b>7.1</b>
+<br>
Last stable release: <b>7.0.4</b>
</p>
diff --git a/docs/news.html b/docs/news.html
index 345e2a9f42..c89c96a7fa 100644
--- a/docs/news.html
+++ b/docs/news.html
@@ -11,6 +11,16 @@
<H1>News</H1>
+<h2>August 26, 2008</h2>
+<p>
+<a href="relnotes-7.1.html">Mesa 7.1</a> is released.
+This is a new development release.
+It should be relatively stable, but those especially concerned about
+stability should wait for the 7.2 release or use Mesa 7.0.4 (the
+previous stable release).
+</p>
+
+
<h2>August 16, 2008</h2>
<p>
<a href="relnotes-7.0.4.html">Mesa 7.0.4</a> is released.
diff --git a/docs/relnotes-7.1.html b/docs/relnotes-7.1.html
index abcbc3186e..02ce540854 100644
--- a/docs/relnotes-7.1.html
+++ b/docs/relnotes-7.1.html
@@ -8,13 +8,21 @@
<body bgcolor="#eeeeee">
-<H1>Mesa 7.1 Release Notes / May XX, 2008</H1>
+<H1>Mesa 7.1 Release Notes / August 26, 2008</H1>
<p>
Mesa 7.1 is a new development release.
There have been many internal code changes since Mesa 7.0.x.
It should be relatively stable, but those who are especially concerned about
-stability should wait for Mesa 7.2.
+stability should wait for Mesa 7.2 or use Mesa 7.0.4 (the previous stable
+release).
+</p>
+</>
+Note that this version of Mesa does not use the GEM memory manager.
+The master branch of git uses GEM.
+</p>
+<p>
+DRM version 2.3.1 should be used with Mesa 7.1
</p>
@@ -27,6 +35,7 @@ TBD
<h2>New features</h2>
<ul>
<li>autoconf-based configuration (and clean-up of Makefiles)
+<li>Assorted DRI driver enhancements
<li>Reduced dependencies between X server and Mesa
<li>GL_EXT_texture_from_pixmap extension for Xlib driver
<li>Support for the GL shading language with i965 driver (implemented by Intel)
@@ -37,6 +46,7 @@ TBD
<ul>
<li>Numerous GLSL fixes
<li>Fixed some error code/detection bugs in the GLSL-related API functions
+<li>Lots of DRI driver fixes.
</ul>
diff --git a/src/mesa/main/version.h b/src/mesa/main/version.h
index a9ef4bdffa..103eb9fb13 100644
--- a/src/mesa/main/version.h
+++ b/src/mesa/main/version.h
@@ -2,7 +2,7 @@
* Mesa 3-D graphics library
* Version: 7.1
*
- * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -31,7 +31,7 @@
#define MESA_MAJOR 7
#define MESA_MINOR 1
#define MESA_PATCH 0
-#define MESA_VERSION_STRING "7.1 rc4"
+#define MESA_VERSION_STRING "7.1"
/* To make version comparison easy */
#define MESA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))