Changelog for pandoc-pyplot-2.0.0.0
Change log
pandoc-pyplot uses Semantic Versioning
Release 2.0.0.0
Many breaking changes in this release:
pandoc-pyplotwill now determine the filename based on hashing the figure content. Therefore, figures will only be re-generated if necessary.- Removed the ability to control the filename and format directly using the
plot_target=...attribute. - Added the ability to control the directory in which figures will be saved using the
directory=...attribute. - Added the possibility to control the figures dots-per-inch (i.e. pixel density) with the
dpi=...attribute. - Added the ability to control the figure format with the
format=...attribute. Possible values are currently"png","svg","pdf", and"jpg"/"jpeg". - The confusing
plot_alt=...attribute has been renamed tocaption=...for obvious reasons. - The
plot_include=...attribute has been renamed toinclude=.... - Added the generation of a higher resolution figure for every figure
pandoc-pyplotunderstands.
Release 1.1.0.0
- Added the ability to include Python files before code using the
plot_include=script.pyattribute. - Added a test suite.
Release 1.0.3.0
- Fixed an issue where
pandoc-pyplotwould not build with base < 4.9 (#1)
Release 1.0.2.0
-
Added support for captions using the
plot_alt=...attribute. For example:```{plot_target=test.png plot_alt="This is a caption"} import matplotlib.pyplot as plt plt.figure() plt.plot([1,2,3,4,5],[1,2,3,4,5])
Release 1.0.1.0
- Added
plotTransform :: Pandoc -> IO Pandocfunction to transform entire documents. This makes it easier to integratepandoc-pyplotinto Hakyll-based sites!
Release 1.0.0.1
- Updated README with fixes and warnings
- Added top-level package documentation compatible with Haddock
- Added Unsafe language extension, as this filter will run arbitrary Python scripts.
Release 1.0.0.0
Initial release.
See documentation on Hackage