aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-09-26 00:55:10 +0200
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-09-26 00:55:10 +0200
commitf02325944489a12b481ca3877cda0b4a44c93203 (patch)
tree1413ba5025cd259b9d97f60efe4848b3eaf254c5
parentReadme updates (diff)
downloadpaper2remarkable-f02325944489a12b481ca3877cda0b4a44c93203.tar.gz
paper2remarkable-f02325944489a12b481ca3877cda0b4a44c93203.zip
Bump version and update changelogv0.7.2
-rw-r--r--CHANGELOG.md11
-rw-r--r--README.md2
-rw-r--r--paper2remarkable/__version__.py2
3 files changed, 13 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5dfd414..b3cc27b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog
+## Version 0.7.2
+
+* Add support to optionally use
+ [ReadabiliPy](https://github.com/alan-turing-institute/ReadabiliPy), a
+ wrapper around Mozilla's
+ [Readability.js](https://github.com/mozilla/readability), to improve text
+ extraction of web articles. This closes
+ [#53](https://github.com/GjjvdBurg/paper2remarkable/issues/53), thanks to
+ @sirupsen for reporting the problem.
+* Improve NeurIPS provider to add support for papers.neurips.cc
+
## Version 0.7.1
* Fix OpenReview provider after site change
diff --git a/README.md b/README.md
index 341b588..957efe9 100644
--- a/README.md
+++ b/README.md
@@ -154,7 +154,7 @@ usage: p2r [-h] [-b] [-c] [-d] [-n] [-p REMARKABLE_DIR] [-r] [-k] [-v] [-V]
[--pdftk PDFTK] [--qpdf QPDF] [--rmapi RMAPI]
input
-Paper2reMarkable version 0.7.1
+Paper2reMarkable version 0.7.2
positional arguments:
input URL to a paper or the path of a local PDF file
diff --git a/paper2remarkable/__version__.py b/paper2remarkable/__version__.py
index e501a41..79572fa 100644
--- a/paper2remarkable/__version__.py
+++ b/paper2remarkable/__version__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-VERSION = (0, 7, 1)
+VERSION = (0, 7, 2)
__version__ = ".".join(map(str, VERSION))