From: <cm...@us...> - 2008-05-30 03:09:55
|
Revision: 5314 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5314&view=rev Author: cmoad Date: 2008-05-29 20:09:53 -0700 (Thu, 29 May 2008) Log Message: ----------- new release prep Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/MANIFEST.in trunk/matplotlib/lib/matplotlib/__init__.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2008-05-30 03:07:39 UTC (rev 5313) +++ trunk/matplotlib/CHANGELOG 2008-05-30 03:09:53 UTC (rev 5314) @@ -1,3 +1,6 @@ +=============================================================== +2008-05-29 Released 0.98.0 at revision 5314 + 2008-05-29 matplotlib.image.imread now no longer always returns RGBA -- if the image is luminance or RGB, it will return a MxN or MxNx3 array if possible. Also uint8 is no longer always Modified: trunk/matplotlib/MANIFEST.in =================================================================== --- trunk/matplotlib/MANIFEST.in 2008-05-30 03:07:39 UTC (rev 5313) +++ trunk/matplotlib/MANIFEST.in 2008-05-30 03:09:53 UTC (rev 5314) @@ -18,7 +18,7 @@ prune examples/_tmp_* recursive-include src *.cpp *.c *.h recursive-include CXX *.cxx *.hxx *.c *.h -recursive-include agg23 * +recursive-include agg24 * recursive-include lib * recursive-include swig * recursive-include ttconv *.cpp *.h Modified: trunk/matplotlib/lib/matplotlib/__init__.py =================================================================== --- trunk/matplotlib/lib/matplotlib/__init__.py 2008-05-30 03:07:39 UTC (rev 5313) +++ trunk/matplotlib/lib/matplotlib/__init__.py 2008-05-30 03:09:53 UTC (rev 5314) @@ -55,7 +55,7 @@ """ from __future__ import generators -__version__ = '0.98pre' +__version__ = '0.98.0' __revision__ = '$Revision$' __date__ = '$Date$' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |