|
| 1 | + |
| 2 | +# Change Log |
| 3 | + |
| 4 | +All notable changes to this project will be documented in this file. |
| 5 | + |
| 6 | +The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). |
| 7 | + |
| 8 | +## [0.1.10] - 2020-05-08 |
| 9 | + |
| 10 | +- Complete overhaul of backend with `_base_plot.py`, refactored all arguments |
| 11 | +- README & Examples generated from README.ipynb, converted with `nbconvert` |
| 12 | +- Docs generated only on release |
| 13 | +- DataFrames interpolated to match animation length |
| 14 | +- Scatter plot introduced |
| 15 | + |
| 16 | +## [0.1.9] - 2020-05-06 |
| 17 | + |
| 18 | +- Fix bar label plotting |
| 19 | +- Update docs to render cleanly |
| 20 | + |
| 21 | +## [0.1.8] - 2020-05-05 |
| 22 | + |
| 23 | +### Changed |
| 24 | + |
| 25 | +- Removed **kwargs from multiple_animated_plot() due to weird errors when passed to `anim.save()` |
| 26 | + |
| 27 | +## [0.1.7] - 2020-05-05 |
| 28 | + |
| 29 | +- Rename pandas-alive to pandas_alive for consistency |
| 30 | +- Adjust subplot arguments in multiple animated plot function for flexibility in avoiding cropping as per <https://stackoverflow.com/questions/10101700/moving-matplotlib-legend-outside-of-the-axis-makes-it-cutoff-by-the-figure-box> |
| 31 | +- Tests included - no CI/CD for tests as no ffmpeg/imagemagick on github actions |
| 32 | + |
| 33 | +## [0.1.6] - 2020-05-05 |
| 34 | + |
| 35 | +- Documentation included at <https://jackmckew.github.io/pandas_alive/> |
| 36 | +- DPI functionality fixed |
| 37 | + |
| 38 | +## [0.1.5] - 2020-05-05 |
| 39 | + |
| 40 | +- Smoother reindexing/interpolation for line charts |
| 41 | + |
| 42 | +## [0.1.4] - 2020-05-05 |
| 43 | + |
| 44 | +- Styling now applied at the base plot level, ensuring consistent styling across plots |
| 45 | +- Dates now formatted on axises with ConciseDateFormatter |
| 46 | + |
| 47 | +## [0.1.3] - 2020-05-05 |
| 48 | + |
| 49 | +- `pandas_alive.output_file()` deprecated in favour of `df.plot_animated(filename='example.mp4')` and/or `df.plot_animated().save('example.mp4')` |
| 50 | +- HTML5 video method implemented with `df.plot_animated().get_html5_video()`, returns a HTML5 video instance |
| 51 | +- Amended bug with append_period_to_title for line charts |
| 52 | + |
| 53 | +## [0.1.2] - 2020-05-04 |
| 54 | + |
| 55 | +- Fix title of subplots & plots |
| 56 | + - Implement functionality to append current time period to title [#1](https://github.com/JackMcKew/pandas_alive/issues/1) |
| 57 | +- Custom placement of current period [#1](https://github.com/JackMcKew/pandas_alive/issues/1) |
| 58 | +- Implement functionality to specify single colour for all bars [#2](https://github.com/JackMcKew/pandas_alive/issues/2) |
| 59 | +- Organise root folder [#3](https://github.com/JackMcKew/pandas_alive/issues/3) |
| 60 | +- Move to save design pattern similar to altair |
0 commit comments