Skip to content

Commit 97143d0

Browse files
committed
add some links and fixes to whats new; bump the version num
svn path=/trunk/matplotlib/; revision=8501
1 parent 8c7361d commit 97143d0

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed

doc/users/whats_new.rst

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Sophisticated subplot grid layout
2727

2828
Jae-Joon Lee has written :mod:`~matplotlib.gridspec`, a new module for
2929
doing complex subplot layouts, featuring row and column spans and
30-
more. See :ref:`gridspec` for a tutorial overview.
30+
more. See :ref:`gridspec-guide` for a tutorial overview.
3131

3232
.. plot:: users/plotting/examples/demo_gridspec01.py
3333

@@ -116,15 +116,18 @@ Much improved software carpentry
116116
---------------------------------
117117

118118
The matplotlib trunk is probably in as good a shape as it has ever
119-
been, thanks to improved software carpentry. We now have a buildbot
120-
which runs a suite of nose regression tests on every svn commit,
121-
auto-generating a set of images and comparing them against a set of
122-
known-goods, sending emails to developers on failures with a
123-
pixel-by-pixel image comparison. Releases and release bugfixes happen
124-
in branches, allowing active new feature development to happen in the
125-
trunk while keeping the release branches stable. Thanks to Andrew
126-
Straw, Michael Droettboom and other matplotlib developers for the
127-
heavy lifting.
119+
been, thanks to improved `software carpentry
120+
<http://software-carpentry.org/>`_. We now have a `buildbot
121+
<http://buildbot.net/trac>`_ which runs a suite of `nose
122+
<http://code.google.com/p/python-nose/>`_ regression tests on every
123+
svn commit, auto-generating a set of images and comparing them against
124+
a set of known-goods, sending emails to developers on failures with a
125+
pixel-by-pixel `image comparison
126+
<http://mpl.code.astraw.com/overview.html>`_. Releases and release
127+
bugfixes happen in branches, allowing active new feature development
128+
to happen in the trunk while keeping the release branches stable.
129+
Thanks to Andrew Straw, Michael Droettboom and other matplotlib
130+
developers for the heavy lifting.
128131

129132
Bugfix marathon
130133
----------------

lib/matplotlib/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
A procedural interface is provided by the companion pyplot module,
55
which may be imported directly, e.g::
66
7-
from pyplot import *
7+
from matplotlib.pyplot import *
88
9-
To include numpy functions, use::
9+
To include numpy functions too, use::
1010
1111
from pylab import *
1212
@@ -90,16 +90,16 @@
9090
for the first time. In particular, it must be called
9191
**before** importing pylab (if pylab is imported).
9292
93-
matplotlib is written by John D. Hunter (jdh2358 at gmail.com) and a
94-
host of others.
93+
matplotlib was initially written by John D. Hunter (jdh2358 at
94+
gmail.com) and is now developed and maintained by a host of others.
9595
9696
Occasionally the internal documentation (python docstrings) will refer
9797
to MATLAB&reg;, a registered trademark of The MathWorks, Inc.
9898
9999
"""
100100
from __future__ import generators
101101

102-
__version__ = '1.0rc1'
102+
__version__ = '1.0.0svn'
103103
__revision__ = '$Revision$'
104104
__date__ = '$Date$'
105105

0 commit comments

Comments
 (0)