diff --git a/Changelog.yaml b/Changelog.yaml index 7b8b3d295d..1d2e8ab034 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,27 @@ # new recipes: # - title: +- version: 3.46.0 + date: 2019-07-19 + + bug fixes: + - title: "Manage tags dialog: When searching for a tag also search the \"Was\" column to see if the original tag name matches." + tickets: [1836813] + + - title: "Windows: Fix calibre-server --manage-users not working correctly" + + - title: "MOBI Input: Fix conversion of MOBI files with malformed markup and embedded tags not working." + tickets: [1836548] + + - title: "Edit book: Allow the search expression history to remember very short terms and also preserve leading and trailing whitespace." + tickets: [1836559] + + - title: "Fix a regression in 3.45 that broke conversion of SVG images when converting to formats such as MOBI that do not support SVG." + tickets: [1836463] + + - title: "Fix a regression in 3.45 that broke parsing of old-style .py config files" + + - version: 3.45.2 date: 2019-07-12 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index cbc9916822..578dff65da 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -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, 2) +numeric_version = (3, 46, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "