5.0.1 updates
diff --git a/docs/RELNOTES-5.0.1 b/docs/RELNOTES-5.0.1
new file mode 100644
index 0000000..8d72cc4
--- /dev/null
+++ b/docs/RELNOTES-5.0.1
@@ -0,0 +1,46 @@
+
+                           Mesa 5.0.1 release notes
+
+                               March 30, 2003
+
+
+
+Introduction
+------------
+
+Mesa uses an even/odd version number scheme like the Linux kernel.
+Even-numbered versions (such as 5.0.x) designate stable releases.
+Odd-numbered versions (such as 4.1.x) designate new developmental releases.
+
+Mesa 5.0.1 just fixes bugs found since the 5.0 release.  See the VERSIONS
+file for details.
+
+
+Device Driver Status
+--------------------
+
+A number of Mesa's software drivers haven't been actively maintained for
+some time.  We rely on volunteers to maintain many of these drivers.
+Here's the current status of all included drivers:
+
+
+Driver			Status
+----------------------	---------------------
+XMesa (Xlib)		implements OpenGL 1.4
+OSMesa (off-screen)	implements OpenGL 1.4
+FX (3dfx Voodoo1/2)	implements OpenGL 1.3
+SVGA			implements OpenGL 1.3
+Wind River UGL		implements OpenGL 1.3
+Windows/Win32		implements OpenGL 1.4
+DJGPP			implements OpenGL 1.4
+GGI			implements OpenGL 1.3
+BeOS			implements OpenGL 1.4
+Allegro			needs updating
+D3D			needs updating
+
+Note: supporting OpenGL 1.4 (vs. 1.3 or 1.2) usually only requires that the
+driver call the _mesa_enable_1_4_extensions() function.
+
+
+----------------------------------------------------------------------
+$Id: RELNOTES-5.0.1,v 3.1 2003/03/30 16:17:54 brianp Exp $
diff --git a/docs/RELNOTES-5.1 b/docs/RELNOTES-5.1
index 3e3112a..f295f8c 100644
--- a/docs/RELNOTES-5.1
+++ b/docs/RELNOTES-5.1
@@ -61,6 +61,9 @@
 Removed files:
 	swrast/s_historgram.[ch]	- moved into src/histogram.c
 
+New files:
+	bufferobj.[ch]		- GL_ARB_vertex_buffer_object functions
+
 
 
 Device Driver Status
@@ -81,7 +84,7 @@
 Windows/Win32		implements OpenGL 1.4
 DJGPP			implements OpenGL 1.4
 GGI			implements OpenGL 1.3
-BeOS			needs updating (underway)
+BeOS			implements OpenGL 1.4
 Allegro			needs updating
 D3D			needs updating
 
@@ -90,4 +93,4 @@
 
 
 ----------------------------------------------------------------------
-$Id: RELNOTES-5.1,v 1.8 2003/03/29 16:39:52 brianp Exp $
+$Id: RELNOTES-5.1,v 1.9 2003/03/30 16:17:57 brianp Exp $
diff --git a/docs/contents.html b/docs/contents.html
index 3175214..f5d6b46 100644
--- a/docs/contents.html
+++ b/docs/contents.html
@@ -20,7 +20,7 @@
 
 <b>Download / Install</b>
 <ul>
-<li><a href="http://www.sourceforge.net/projects/mesa3d" target="_parent">Stable Release (5.0)</a>
+<li><a href="http://www.sourceforge.net/projects/mesa3d" target="_parent">Stable Release (5.0.1)</a>
 <li><a href="download.html" target="MainFrame">Downloading/Unpacking</a>
 <li><a href="install.html" target="MainFrame">Installation</a>
 <li><a href="glu.html" target="MainFrame">SGI's GLU</a>
diff --git a/docs/news.html b/docs/news.html
index ec2833e..84dd92f 100644
--- a/docs/news.html
+++ b/docs/news.html
@@ -7,6 +7,50 @@
 <H1>News</H1>
 
 
+<h2>March 30, 2003</h2>
+
+<p>
+Mesa 5.0.1 has been released.  This is a stable, bug-fix release.
+</p>
+<pre>
+    New:
+	- DOS driver updates from Daniel Borca
+	- updated GL/gl_mangle.h file (Bill Hoffman)
+    Bug fixes:
+	- auto mipmap generation for cube maps was broken (bug 641363)
+	- writing/clearing software alpha channels was unreliable
+	- minor compilation fixes for OS/2 (Evgeny Kotsuba)
+	- fixed some bad assertions found with shadowtex demo
+	- fixed error checking bug in glCopyTexSubImage2D (bug 659020)
+	- glRotate(angle, -x, 0, 0) was incorrect (bug 659677)
+	- fixed potential segfault in texture object validation (bug 659012)
+	- fixed some bogus code in _mesa_test_os_sse_exception_support (Linus)
+	- fix fog stride bug in tnl code for h/w drivers (Michel Danzer)
+	- fixed glActiveTexture / glMatrixMode(GL_TEXTURE) bug (#669080)
+	- glGet(GL_CURRENT_SECONDARY_COLOR) should return 4 values, not 3
+	- fixed compilation problem on Solaris7/x86 (bug 536406)
+	- fixed prefetch bug in 3DNow! code (Felix Kuhling)
+	- fixed NeXT build problem (FABSF macro)
+	- glDrawPixels Z values when glPixelZoom!=1 were invalid (bug 687811)
+	- zoomed glDraw/CopyPixels with clipping sometimes failed (bug 689964)
+	- AA line and triangle Z values are now rounded, not truncated
+	- fixed color interpolation bug when GLchan==GLfloat (bug 694461)
+	- glArePrograms/TexturesResident() wasn't 100% correct (Jose Fonseca)
+	- fixed a minor GL_COLOR_MATERIAL bug
+	- NV vertex program EXP instruction was broken
+	- glColorMask misbehaved with X window / pixmap rendering
+	- fix autoconf/libtool GLU C++ linker problem on Linux (a total hack)
+	- attempt to fix GGI compilation problem when MesaDemos not present
+	- NV vertex program ARL-relative fetches didn't work
+    Changes:
+	- use glPolygonOffset in gloss demo to avoid z-fighting artifacts
+	- updated winpos and pointblast demos to use ARB extensions
+	- disable SPARC normal transformation code (bug 673938)
+	- GLU fixes for OS/2 (Evgeny Kotsuba)
+</pre>
+
+
+
 <h2>March 7, 2003</h2>
 <p>
 Website and documentation overhaul.
@@ -557,6 +601,6 @@
 
 
 <hr>
-$Id: news.html,v 3.2 2003/03/19 19:15:29 brianp Exp $
+$Id: news.html,v 3.3 2003/03/30 16:17:59 brianp Exp $
 </body>
 </html>
\ No newline at end of file
diff --git a/docs/relnotes.html b/docs/relnotes.html
index 5172cbd..19e38d0 100644
--- a/docs/relnotes.html
+++ b/docs/relnotes.html
@@ -11,6 +11,7 @@
 </p>
 
 <UL>
+<LI><A HREF="RELNOTES-5.0.1">RELNOTES-5.0.1</A>
 <LI><A HREF="RELNOTES-5.0">RELNOTES-5.0</A>
 <LI><A HREF="RELNOTES-4.1">RELNOTES-4.1</A>
 <LI><A HREF="RELNOTES-4.0.3">RELNOTES-4.0.3</A>