Skip to content

Commit d3e49b6

Browse files
committed
Add What's new entries for 1.3.1
1 parent c4a2135 commit d3e49b6

File tree

2 files changed

+72
-4
lines changed

2 files changed

+72
-4
lines changed

doc/api/api_changes.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ for 1.3.1 since 1.3.0 the following change was made:
2727
private variable. Among the obvious encapsulation benefit, this
2828
removes this confusing-looking member from the documentation.
2929

30+
- The method :meth:`~matplotlib.axes.Axes.hist` now always returns bin
31+
occupancies as an array of type `float`. Previously, it was sometimes
32+
an array of type `int`, depending on the call.
33+
3034
Code removal
3135
------------
3236

@@ -207,10 +211,6 @@ Code changes
207211
* The :func:`matplotlib.cbook.check_output` function has been moved to
208212
:func:`matplotlib.compat.subprocess`.
209213

210-
* The method :meth:`~matplotlib.axes.Axes.hist` now always returns bin
211-
occupancies as an array of type `float`. Previously, it was sometimes
212-
an array of type `int`, depending on the call.
213-
214214
Configuration and rcParams
215215
--------------------------
216216

doc/users/whats_new.rst

+68
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,74 @@ revision, see the :ref:`github-stats`.
2323
new in matplotlib-1.3
2424
=====================
2525

26+
New in 1.3.1
27+
------------
28+
29+
1.3.1 is a bugfix release, primarily dealing with improved setup and
30+
handling of dependencies, and correcting and enhancing the
31+
documentation.
32+
33+
The following changes were made in 1.3.1 since 1.3.0.
34+
35+
Enhancements
36+
````````````
37+
38+
- Added a context manager for creating multi-page pdfs (see
39+
`matplotlib.backends.backend_pdf.PdfPages`).
40+
41+
- The WebAgg backend should no have lower latency over heterogeneous
42+
Internet connections.
43+
44+
Bug fixes
45+
`````````
46+
47+
- Histogram plots now contain the endline.
48+
49+
- Fixes to the Molleweide projection.
50+
51+
- Handling recent fonts from Microsoft and Macintosh-style fonts with
52+
non-ascii metadata is improved.
53+
54+
- Hatching of fill between plots now works correctly in the PDF
55+
backend.
56+
57+
- Tight bounding box support now works in the PGF backend.
58+
59+
- Transparent figures now display correctly in the Qt4Agg backend.
60+
61+
- Drawing lines from one subplot to another now works.
62+
63+
- Unit handling on masked arrays has been improved.
64+
65+
Setup and dependencies
66+
``````````````````````
67+
68+
- Now works with any version of pyparsing 1.5.6 or later, without displaying
69+
hundreds of warnings.
70+
71+
- Now works with 64-bit versions of Ghostscript on MS-Windows.
72+
73+
- When installing from source into an environment without Numpy, Numpy
74+
will first be downloaded and built and then used to build
75+
matplotlib.
76+
77+
- Externally installed backends are now always imported using a
78+
fully-qualified path to the module.
79+
80+
- Works with newer version of wxPython.
81+
82+
- Can now build with a PyCXX installed globally on the system from source.
83+
84+
- Better detection of Gtk3 dependencies.
85+
86+
Testing
87+
```````
88+
89+
- Tests should now work in non-English locales.
90+
91+
- PEP8 conformance tests now report on locations of issues.
92+
93+
2694
New plotting features
2795
---------------------
2896

0 commit comments

Comments
 (0)