diff --git a/CHANGELOG.md b/CHANGELOG.md index 75ebf92b..fac78819 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] + +## [0.7.0] - 17-03-2015 ### Added - Matplotlib support - Quite a bit of basic docstrings @@ -47,7 +49,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Fix package delegation with duplicate packages -[unreleased]: https://github.com/JelteF/PyLaTeX/compare/v0.6.1...HEAD +[unreleased]: https://github.com/JelteF/PyLaTeX/compare/v0.7.0...HEAD +[0.7.0]: https://github.com/JelteF/PyLaTeX/compare/v0.6.1...v0.7.0 [0.6.1]: https://github.com/JelteF/PyLaTeX/compare/v0.6...v0.6.1 [0.6]: https://github.com/JelteF/PyLaTeX/compare/v0.5...v0.6 [0.5]: https://github.com/JelteF/PyLaTeX/compare/v0.4.2...v0.5 diff --git a/README.md b/README.md index 52d3e66d..30c418f1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ LaTeX. ### Features - Document generation and compilation -- Section, table, math, figure and package classes +- Section, table, math, figure, matplotlib and package classes - A matrix class that can compile NumPy ndarrays and matrices to LaTeX - Very exstensible base classes that you can use to easily add new features - Contextmanager style class hierarchy diff --git a/setup.py b/setup.py index 33ae04e4..de7920f7 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ -------- - Document generation and compilation -- Section, table, math, figure and package classes +- Section, table, math, figure, matplotlib and package classes - A matrix class that can compile NumPy ndarrays and matrices to LaTeX - Very exstensible base classes that you can use to easily add new features - Contextmanager style class hierarchy @@ -180,7 +180,7 @@ extras['all'] = list(set([req for reqs in extras.values() for req in reqs])) setup(name='PyLaTeX', - version='0.6.1', + version='0.7.0', author='Jelte Fennema', author_email='pylatex@jeltef.nl', description='A Python library for creating LaTeX files',