From f02325944489a12b481ca3877cda0b4a44c93203 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Sat, 26 Sep 2020 00:55:10 +0200 Subject: Bump version and update changelog --- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- 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 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)) -- cgit v1.2.3