From bc7229e0a306f5fe3b97c41c6a337ed48946aec6 Mon Sep 17 00:00:00 2001 From: Alberto Pettarin Date: Sun, 12 Feb 2017 18:33:51 +0100 Subject: [PATCH] Updated version and README --- CHANGELOG | 6 ++++++ README.md | 5 +++-- VERSION | 2 +- export-kobo.py | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 44a6ce5..c7c9bd6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,12 @@ Changelog ========= +v2.1.1 (2017-02-12) +------------------- + +#. Fixed a typo in month names (contributed by Chris Krycho) + + v2.1.0 (2017-01-17) ------------------- diff --git a/README.md b/README.md index 5a313aa..fd1bc39 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ A Python tool to export annotations and highlights from a Kobo SQLite file. -* Version: 2.1.0 -* Date: 2017-01-17 +* Version: 2.1.1 +* Date: 2017-02-12 * Developer: [Alberto Pettarin](http://www.albertopettarin.it/) * License: the MIT License (MIT) * Contact: [click here](http://www.albertopettarin.it/contact.html) @@ -187,6 +187,7 @@ Check that you wrote the book title exactly as printed by ``--list`` ## Acknowledgments +* Chris Krycho contributed a fix for a typo in month names * Pierre-Arnaud Rabier suggested adding an option to extract the annotations and highlights for a single ebook. * Nick Kalogirou and Andrea Moro provided me with theirs KoboReader.sqlite file with the new schema. * Curiositry suggested adding an option to extract in Kindle My Clippings format. diff --git a/VERSION b/VERSION index 7ec1d6d..3e3c2f1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.0 +2.1.1 diff --git a/export-kobo.py b/export-kobo.py index c2bea5e..f97efe1 100644 --- a/export-kobo.py +++ b/export-kobo.py @@ -42,7 +42,7 @@ __copyright__ = "Copyright 2013-2017, Alberto Pettarin (www.albertopettarin.it)" __license__ = "MIT" __status__ = "Production" -__version__ = "2.1.0" +__version__ = "2.1.1" PY2 = (sys.version_info[0] == 2)