]> xmof Git - DeDRM.git/commitdiff
Version number update
authorApprentice Harper <apprenticeharper@gmail.com>
Sun, 21 Feb 2021 14:35:49 +0000 (14:35 +0000)
committerApprentice Harper <apprenticeharper@gmail.com>
Sun, 21 Feb 2021 14:35:49 +0000 (14:35 +0000)
Update to 7.1.0 for a full release

DeDRM_plugin/__init__.py
Obok_plugin/__init__.py

index f4be36d44f342f174470c9dab4f0aa1c5c6339f0..a8059a582decca902b6f333e584614758aa21f8c 100644 (file)
@@ -5,7 +5,7 @@
 # Copyright © 2008-2020 Apprentice Harper et al.
 
 __license__   = 'GPL v3'
-__version__ = '7.0.3'
+__version__ = '7.1.0'
 __docformat__ = 'restructuredtext en'
 
 
@@ -74,6 +74,7 @@ __docformat__ = 'restructuredtext en'
 #   7.0.1 - More Python 3 changes. Adobe PDF decryption should now work in some cases
 #   7.0.2 - More Python 3 changes. Adobe PDF decryption should now work on PC too.
 #   7.0.3 - More Python 3 changes. Integer division in ineptpdf.py
+#   7.1.0 - Full release for calibre 5.x
 
 """
 Decrypt DRMed ebooks.
index b59313680eaed8998d59553dcc9ea66bcd38ddaa..62440a980d576b5ec0648a054417b58d63951a63 100644 (file)
@@ -3,7 +3,7 @@ from __future__ import (unicode_literals, division, absolute_import,
                         print_function)
 
 __license__   = 'GPL v3'
-__version__ = '6.7.0'
+__version__ = '7.1.0'
 __docformat__ = 'restructuredtext en'
 
 #####################################################################
@@ -20,7 +20,7 @@ except NameError:
 PLUGIN_NAME = 'Obok DeDRM'
 PLUGIN_SAFE_NAME = PLUGIN_NAME.strip().lower().replace(' ', '_')
 PLUGIN_DESCRIPTION = _('Removes DRM from Kobo kepubs and adds them to the library.')
-PLUGIN_VERSION_TUPLE = (6, 7, 0)
+PLUGIN_VERSION_TUPLE = (7, 1, 0)
 PLUGIN_VERSION = '.'.join([str(x) for x in PLUGIN_VERSION_TUPLE])
 HELPFILE_NAME = PLUGIN_SAFE_NAME + '_Help.htm'
 PLUGIN_AUTHORS = 'Anon'