version 3.45.1

This commit is contained in:
Kovid Goyal 2019-07-12 13:49:12 +05:30
parent 15f69b8fa3
commit a5bf5344ec
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 2 deletions

View File

@ -20,7 +20,7 @@
# new recipes:
# - title:
- version: 3.45.0
- version: 3.45.1
date: 2019-07-12
new features:
@ -38,6 +38,9 @@
- title: "Support subtitle in Douban metadata plugin"
bug fixes:
- title: "Fix a Windows-specific regression in 3.45.0 that caused various errors in the viewer and editor"
tickets: [1836294]
- title: "Linux: Workaround for bug in recent Linux kernels that causes the Kindle to eject after calibre connects to it."
tickets: [1834641]

View File

@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv
import sys, locale, codecs, os, importlib, collections
__appname__ = 'calibre'
numeric_version = (3, 45, 0)
numeric_version = (3, 45, 1)
__version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"