From 1e3f3b0fb6043072c16961577bf038eef6ddce07 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Fri, 22 Feb 2019 14:34:17 +0000 Subject: [PATCH 1/2] Update documentation to mention how to upgrade --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 369c68e..7b05b51 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,11 @@ Locally: python setup.py install +### Upgrading + +If using pip, then use pip with the `--upgrade` flag, e.g. + + pip install --upgrade git+https://github.com/pdftables/python-pdftables-api.git ## Usage From 3240cd04e20c7ac51bb0aabcac1f71aa64f9059f Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Fri, 22 Feb 2019 14:34:30 +0000 Subject: [PATCH 2/2] Increase version to 1.1.0 in setup.py It's been sat on 1.0.0 for a while; conversion from HTML is a new feature and therefore a new minor version. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3f24cdc..2ac3094 100755 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def read(fname): setup( name = 'pdftables-api', - version = '1.0.0', + version = '1.1.0', author = 'The Sensible Code Company', author_email = 'support@sensiblecode.io', description = ('PDFTables.com Python API library.'),