From 36006cadc5d0155d45db7a969921149cdaad2319 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Fri, 2 Nov 2018 23:25:07 +0530 Subject: [PATCH] Bump version and update HISTORY.md --- HISTORY.md | 9 +++++++++ camelot/__version__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 6c1bc42..b277008 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -4,6 +4,15 @@ Release History master ------ +0.3.1 (2018-11-02) +------------------ + +**Improvements** + +* Matplotlib is now an optional requirement. [#190](https://github.com/socialcopsdev/camelot/pull/190) by Vinayak Mehta. + * You can install it using `$ pip install camelot-py[plot]`. +* [#127](https://github.com/socialcopsdev/camelot/issues/127) Add tests for plotting. Coverage is now at 87%! [#179](https://github.com/socialcopsdev/camelot/pull/179) by [Suyash Behera](https://github.com/Suyash458). + 0.3.0 (2018-10-28) ------------------ diff --git a/camelot/__version__.py b/camelot/__version__.py index 646976f..84b6f7e 100644 --- a/camelot/__version__.py +++ b/camelot/__version__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -VERSION = (0, 3, 0) +VERSION = (0, 3, 1) __title__ = 'camelot-py' __description__ = 'PDF Table Extraction for Humans.'