From 963555e6972d865be8abc8082df37e1f598bce29 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Wed, 19 Feb 2020 12:51:59 +0000 Subject: Paper2ReMarkable Release version 0.5.2 Changes in this release: * 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. --- CHANGELOG.md | 10 ++++++++++ paper2remarkable/__version__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) 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)) -- cgit v1.2.3