version 3.26.1

This commit is contained in:
Kovid Goyal 2018-06-15 12:25:24 +05:30
parent 3a6fd2bf0d
commit 7d38911f68
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.26.0
- version: 3.26.1
date: 2018-06-15
new features:
@ -59,6 +59,9 @@
- title: "Edit metadata dialog: Fix distorted rendering of some labels in the custom metadata tab in rare circumstances."
tickets: [1766762]
- title: "version 3.26.1 prevents dropping of a book onto itself from triggering the merge dialog, which should reduce accidental triggers"
tickets: [1777054]
improved recipes:
- Slate
- New York Times Book Review

View File

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