Skip to content

Commit

Permalink
Version number update
Browse files Browse the repository at this point in the history
Update to 7.1.0 for a full release
  • Loading branch information
apprenticeharper committed Feb 21, 2021
1 parent 70a754f commit 76a47e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion DeDRM_plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'


Expand Down Expand Up @@ -74,6 +74,7 @@
# 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.
Expand Down
4 changes: 2 additions & 2 deletions Obok_plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
print_function)

__license__ = 'GPL v3'
__version__ = '6.7.0'
__version__ = '7.1.0'
__docformat__ = 'restructuredtext en'

#####################################################################
Expand All @@ -20,7 +20,7 @@
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'
Expand Down

0 comments on commit 76a47e0

Please sign in to comment.