From 16fc1b89802c7b1696f3bf5e1ba018f678f36241 Mon Sep 17 00:00:00 2001 From: Florian Bach Date: Sat, 23 Oct 2021 21:45:43 +0200 Subject: [PATCH] Release v0.0.10 --- calibre-plugin/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/calibre-plugin/__init__.py b/calibre-plugin/__init__.py index b973c95..dfcc79f 100644 --- a/calibre-plugin/__init__.py +++ b/calibre-plugin/__init__.py @@ -14,10 +14,11 @@ # v0.0.7: More PDF logging, PDF reading in latin-1, MacOS locale bugfix # v0.0.8: More PDF bugfixes, support unlimited PDF file sizes, tell Calibre ACSMs are books. # v0.0.9: Add FulfillmentNotification support, add LoanReturn support. +# v0.0.10: Fix nonce calculation, merge PRs #3 and #4 (PyCryptodome stuff) from calibre.customize import FileTypePlugin # type: ignore -__version__ = '0.0.9' +__version__ = '0.0.10' PLUGIN_NAME = "DeACSM" PLUGIN_VERSION_TUPLE = tuple([int(x) for x in __version__.split(".")])