aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-02-19 12:51:59 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-02-19 12:51:59 +0000
commit963555e6972d865be8abc8082df37e1f598bce29 (patch)
treebf9f267c53857906ec307ab521f13d2d4706e87d
parentMerge branch 'feature/provider_nber' (diff)
downloadpaper2remarkable-963555e6972d865be8abc8082df37e1f598bce29.tar.gz
paper2remarkable-963555e6972d865be8abc8082df37e1f598bce29.zip
Paper2ReMarkable Release version 0.5.2v0.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.
-rw-r--r--CHANGELOG.md10
-rw-r--r--paper2remarkable/__version__.py2
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))