|
| 1 | +.. |
| 2 | + Valid subsections: |
| 3 | + - Deprecated |
| 4 | + - Features |
| 5 | + - Bug fixes |
| 6 | + - Internals |
| 7 | + - Documentation |
| 8 | +
|
1 | 9 | ================= |
2 | 10 | Changelog history |
3 | 11 | ================= |
4 | 12 |
|
5 | | -ProPlot v1.0 (2020-##-##) |
6 | | -========================= |
| 13 | +ProPlot v1.0.0 (2020-##-##) |
| 14 | +=========================== |
7 | 15 | This will be published when some major refactoring tasks are completed. |
8 | 16 | See :pr:`45`, :pr:`46`, and :pr:`50`. |
9 | 17 |
|
| 18 | +ProPlot v0.2.4 (2019-12-07) |
| 19 | +=========================== |
| 20 | +Deprecated |
| 21 | +---------- |
| 22 | +- Rename `ColorCacheDict` to `~proplot.styletools.ColorDict` (:commit:`aee7d1be`). |
| 23 | +- Rename `colors` to `~proplot.styletools.Colors` (:commit:`aee7d1be`) |
| 24 | +- Remove `fonts_system` and `fonts_proplot`, rename `colordict` to |
| 25 | + `~proplot.styletools.colors`, make top-level variables |
| 26 | + more robust (:commit:`861583f8`). |
| 27 | + |
| 28 | +Documentation |
| 29 | +------------- |
| 30 | +- Params table for `~proplot.styletools.show_fonts` (:commit:`861583f8`). |
| 31 | + |
| 32 | +Internals |
| 33 | +--------- |
| 34 | +- Improvements to `~proplot.styletools.register_colors`. |
| 35 | + |
| 36 | +ProPlot v0.2.3 (2019-12-05) |
| 37 | +=========================== |
| 38 | +Bug fixes |
| 39 | +--------- |
| 40 | +- Fix issue with overlapping gridlines (:commit:`8960ebdc`). |
| 41 | +- Fix issue where auto colorbar labels are not applied when ``globe=True`` (:commit:`ecb3c899`). |
| 42 | +- More sensible zorder for gridlines (:commit:`90d94e55`). |
| 43 | +- Fix issue where customized super title settings are overridden when |
| 44 | + new axes are created (:commit:`35cb21f2`). |
| 45 | + |
| 46 | +Documentation |
| 47 | +------------- |
| 48 | +- Organize ipython notebook documentation (:commit:`35cb21f2`). |
| 49 | + |
| 50 | +Internals |
| 51 | +--------- |
| 52 | +- Major cleanup of the `~proplot.wrappers.colorbar_wrapper` source code, handle |
| 53 | + minor ticks using the builtin matplotlib API just like major ticks (:commit:`b9976220`). |
| 54 | + |
| 55 | +ProPlot v0.2.2 (2019-12-04) |
| 56 | +=========================== |
| 57 | +Bug fixes |
| 58 | +--------- |
| 59 | +- Fix shared *x* and *y* axis bugs (:commit:`ac14e9dd`). |
| 60 | + |
| 61 | +Deprecated |
| 62 | +---------- |
| 63 | +- Rename `~proplot.subplots.axes_grid` to `~proplot.subplots.subplot_grid` (:commit:`ac14e9dd`). |
| 64 | + |
| 65 | +Documentation |
| 66 | +------------- |
| 67 | +- Make notebook examples PEP8 compliant (:commit:`97f5ffd4`). Much more readable now. |
10 | 68 |
|
11 | | -ProPlot v0.1 (2019-11-27) |
12 | | -========================= |
| 69 | +ProPlot v0.2.1 (2019-12-02) |
| 70 | +=========================== |
| 71 | +Deprecated |
| 72 | +---------- |
| 73 | +- Rename `autoreload_setup`, `autosave_setup`, and `matplotlib_setup` to |
| 74 | + `~proplot.rctools.ipython_autoreload`, `~proplot.rctools.ipython_autosave`, and `~proplot.rctools.ipython_matplotlib`, respectively (:commit:`84e80c1e`). |
13 | 75 |
|
14 | | -The very first version! Published after merging |
15 | | -:pr:`47` which added automatic Travis testing |
16 | | -and significantly improved the documentation. `Luke Davis`_. |
| 76 | +ProPlot v0.2.0 (2019-12-02) |
| 77 | +=========================== |
| 78 | +Features |
| 79 | +-------- |
| 80 | +- Support manual resizing for all backends, including ``osx`` and ``qt`` (:commit:`3a622887`). |
| 81 | + |
| 82 | +Bug fixes |
| 83 | +--------- |
| 84 | +- Disable automatic resizing for the ``nbAgg`` interactive inline backend. Found no |
| 85 | + suitable workaround (:commit:`3a622887`). |
| 86 | + |
| 87 | +Deprecated |
| 88 | +---------- |
| 89 | +- Remove the ``nbsetup`` rc setting in favor of separate ``autosave``, ``autoreload``, |
| 90 | + and ``matplotlib`` settings for triggering the respective ``%`` magic commands. |
| 91 | + (:commit:`3a622887`; ``nbsetup`` is still accepted but no longer documented). |
| 92 | +- Rename the ``format`` rc setting in favor of the ``inlinefmt`` setting |
| 93 | + (:commit:`3a622887`; ``format`` is still accepted but no longer documented). |
| 94 | +- Rename ``FlexibleGridSpec`` and ``FlexibleSubplotSpec`` to ``GridSpec`` |
| 95 | + and ``SubplotSpec`` (:commit:`3a622887`; until :pr:`50` is merged it is impossible |
| 96 | + to use these manually, so this won't bother anyone). |
| 97 | + |
| 98 | +Internals |
| 99 | +--------- |
| 100 | +- Organize the ``rc`` documentation and the default ``.proplotrc`` file (:commit:`3a622887`). |
| 101 | +- Rename ``rcParamsCustom`` to ``rcParamsLong`` |
| 102 | + (:commit:`3a622887`; this is inaccessible to the user). |
| 103 | +- When calling ``fig.canvas.print_figure()`` on a stale figure, call ``fig.canvas.draw()`` |
| 104 | + first. May be overkill for `~matplotlib.figure.Figure.savefig` but critical for |
| 105 | + correctly displaying already-drawn notebook figures. |
| 106 | + |
| 107 | +ProPlot v0.1.0 (2019-12-01) |
| 108 | +=========================== |
| 109 | +Internals |
| 110 | +--------- |
| 111 | +- Include `flake8` in Travis CI testing (:commit:`8743b857`). |
| 112 | +- Enforce source code PEP8 compliance (:commit:`78da51a7`). |
| 113 | +- Use pre-commit for all future commits (:commit:`e14f6809`). |
| 114 | +- Implement tight layout stuff with canvas monkey patches (:commit:`67221d10`). |
| 115 | + ProPlot now works for arbitrary backends, not just inline and qt. |
| 116 | + |
| 117 | +Documentation |
| 118 | +------------- |
| 119 | +- Various `RTD bugfixes <https://github.com/readthedocs/readthedocs.org/issues/6412>`__ (e.g. :commit:`37633a4c`). |
| 120 | + |
| 121 | +ProPlot v0.0.0 (2019-11-27) |
| 122 | +=========================== |
| 123 | + |
| 124 | +The first version released on `PyPi <https://pypi.org/project/proplot/>`__. |
17 | 125 |
|
18 | 126 | .. _`Luke Davis`: https://github.com/lukelbd |
19 | 127 | .. _`Riley X. Brady`: https://github.com/bradyrx |
20 | | - |
|
0 commit comments