version 2.85.1

This commit is contained in:
Kovid Goyal 2017-05-13 09:22:41 +05:30
parent 10b6e91167
commit 9b729fffd1
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 2 deletions

View File

@ -20,7 +20,7 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 2.85.0 - version: 2.85.1
date: 2017-05-12 date: 2017-05-12
new features: new features:
@ -54,6 +54,8 @@
- title: "Preferences->Toolbars: Show an error message when the user tries to remove either the Preferences or Location Manager buttons instead of just silently adding them back." - title: "Preferences->Toolbars: Show an error message when the user tries to remove either the Preferences or Location Manager buttons instead of just silently adding them back."
tickets: [1689022] tickets: [1689022]
- title: "version 2.85.1 contains a fix for a regression that cause the Open with action to go missing from the right click menu of the Book details panel"
improved recipes: improved recipes:
- Private Eye - Private Eye

View File

@ -6,7 +6,7 @@ from future_builtins import map
import sys, locale, codecs, os, importlib, collections import sys, locale, codecs, os, importlib, collections
__appname__ = u'calibre' __appname__ = u'calibre'
numeric_version = (2, 85, 0) numeric_version = (2, 85, 1)
__version__ = u'.'.join(map(unicode, numeric_version)) __version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>" __author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"