1Changes for 0.83
2================
3
4.. code-block:: text
5
6  - Made HOME/.matplotlib the new config dir where the matplotlibrc
7    file, the ttf.cache, and the tex.cache live.  The new default
8    filenames in .matplotlib have no leading dot and are not hidden.
9    e.g., the new names are matplotlibrc, tex.cache, and ttffont.cache.
10    This is how ipython does it so it must be right.
11
12    If old files are found, a warning is issued and they are moved to
13    the new location.
14
15  - backends/__init__.py no longer imports new_figure_manager,
16    draw_if_interactive and show from the default backend, but puts
17    these imports into a call to pylab_setup.  Also, the Toolbar is no
18    longer imported from WX/WXAgg.  New usage:
19
20      from backends import pylab_setup
21      new_figure_manager, draw_if_interactive, show = pylab_setup()
22
23  - Moved Figure.get_width_height() to FigureCanvasBase. It now
24    returns int instead of float.
25