Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ac387d1

Browse files
committed
Tagging 0.99.0.rc1 release
svn path=/trunk/matplotlib/; revision=7315
1 parent 858cab9 commit ac387d1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
======================================================================
2+
3+
2009-07-31 Tagging 0.99.0.rc1 at 7314 - MGD
4+
15
2009-07-30 Add set_cmap and register_cmap, and improve get_cmap,
26
to provide convenient handling of user-generated
37
colormaps. Reorganized _cm and cm modules. - EF

examples/pylab_examples/log_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# log x and y axis
2121
plt.subplot(223)
22-
plt.loglog(t, 20*np.exp(-t/10.0), basex=4)
22+
plt.loglog(t, 20*np.exp(-t/10.0), basex=2)
2323
plt.grid(True)
2424
plt.title('loglog base 4 on x')
2525

lib/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"""
9090
from __future__ import generators
9191

92-
__version__ = '0.98.6svn'
92+
__version__ = '0.99.0.rc1'
9393
__revision__ = '$Revision$'
9494
__date__ = '$Date$'
9595

0 commit comments

Comments
 (0)