Skip to content

Commit 07eb133

Browse files
committed
Include changelog & v0.1.10 release
Former-commit-id: f378796
1 parent cc249b8 commit 07eb133

File tree

3 files changed

+62
-2
lines changed

3 files changed

+62
-2
lines changed

CHANGELOG.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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

pandas_alive/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .plotting import plot, AnimatedAccessor, animate_multiple_plots
22
from .base import load_dataset
33

4-
version = "0.1.9"
4+
version = "0.1.10"
55

66
# Register animated_plot accessor for Pandas DataFrames and Series:
77
import pandas as pd

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pandas_alive"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
description = "Animated plotting extension for Pandas with Matplotlib"
55
authors = ["JackMcKew <jackmckew2@gmail.com>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)