diff options
| -rw-r--r-- | CHANGELOG.md | 10 | ||||
| -rw-r--r-- | paper2remarkable/__version__.py | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 898f7da..b273ac4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## Version 0.5.2 + +* Add provider for US National Bureau of Economic Research + ([#27](https://github.com/GjjvdBurg/paper2remarkable/pull/27)). +* Automatically extract the filename from a pdf url where possible + ([#25](https://github.com/GjjvdBurg/paper2remarkable/issues/25)). +* Speed up centering of pdfs by removing unnecessary cropping operation. +* Improve robustness against missing metadata, remove spaces in author names, + and other minor improvements. + ## Version 0.5.1 * Automatically detect when a HTML source is provided diff --git a/paper2remarkable/__version__.py b/paper2remarkable/__version__.py index 6e42bfc..3fec55b 100644 --- a/paper2remarkable/__version__.py +++ b/paper2remarkable/__version__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -VERSION = (0, 5, 1) +VERSION = (0, 5, 2) __version__ = ".".join(map(str, VERSION)) |
