aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-04-15 11:18:32 +0100
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-04-15 11:18:32 +0100
commit3999c7e59dbdf50a35bbf3c6efb9af872befde95 (patch)
treeb730e6f51df0adc9cad897d7e5492fcd55a7ae05
parentMerge branch 'bugfix/detect_pdftool' (diff)
downloadpaper2remarkable-3999c7e59dbdf50a35bbf3c6efb9af872befde95.tar.gz
paper2remarkable-3999c7e59dbdf50a35bbf3c6efb9af872befde95.zip
Bump version and update changelogv0.6.2
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md2
-rw-r--r--paper2remarkable/__version__.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cd62d25..8a05abc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## Version 0.6.2
+
+* Print to log whether removing arXiv stamp was successful.
+* Fix bug that failed to correctly detect the pdf tool
+ ([#42](https://github.com/GjjvdBurg/paper2remarkable/issues/42)).
+
## Version 0.6.1
* Bugfix that makes removing the arXiv stamp more robust.
diff --git a/README.md b/README.md
index 3a3819d..cf82989 100644
--- a/README.md
+++ b/README.md
@@ -71,7 +71,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.6.0
+Paper2reMarkable version 0.6.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 98ffeff..68746e4 100644
--- a/paper2remarkable/__version__.py
+++ b/paper2remarkable/__version__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-VERSION = (0, 6, 1)
+VERSION = (0, 6, 2)
__version__ = ".".join(map(str, VERSION))