diff options
| -rw-r--r-- | CHANGELOG.md | 11 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | paper2remarkable/__version__.py | 2 |
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 @@ -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)) |
