From b3fc6279900a0ffbe281f5619272545bca13f800 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 26 May 2018 08:17:57 +0530 Subject: [PATCH] version 3.24.1 --- Changelog.yaml | 4 +++- src/calibre/constants.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index 71b37b200f..f72a2bfa3f 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,7 +20,7 @@ # new recipes: # - title: -- version: 3.24.0 +- version: 3.24.1 date: 2018-05-25 new features: @@ -46,6 +46,8 @@ tickets: [1769442] bug fixes: + - title: "Version 3.24.1 fixes a regression in the 3.24 in the editor that caused syncing between the editor and the Preview panel/Live CSS panel to not work correctly" + - title: "PDF Output: Strip zero-width space characters from the text as their presence prevents searching from working" - title: "DOCX Output: Fix
 tags not being converted correctly."
diff --git a/src/calibre/constants.py b/src/calibre/constants.py
index a169e9b249..3087106aeb 100644
--- a/src/calibre/constants.py
+++ b/src/calibre/constants.py
@@ -6,7 +6,7 @@ from future_builtins import map
 import sys, locale, codecs, os, importlib, collections
 
 __appname__   = u'calibre'
-numeric_version = (3, 24, 0)
+numeric_version = (3, 24, 1)
 __version__   = u'.'.join(map(unicode, numeric_version))
 __author__    = u"Kovid Goyal "