version 6.18.1

This commit is contained in:
Kovid Goyal 2023-05-26 17:35:10 +05:30
parent 59ba5f8d1b
commit 8a8e2ed8de
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 2 deletions

View File

@ -23,7 +23,7 @@
# - title by author
# }}}
{{{ 6.18.0 2023-05-26
{{{ 6.18.1 2023-05-26
:: new features
@ -61,6 +61,8 @@
- [2018548] Fix a regression in the previous release that broke the category manager dialog in some situations
- 6.18.1 fixes a regression that broke setting metadata and generating PDF files in the macOS and Linux binary builds
:: improved recipes
- NYTimes

View File

@ -5,7 +5,7 @@ from functools import lru_cache
import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre'
numeric_version = (6, 18, 0)
numeric_version = (6, 18, 1)
__version__ = '.'.join(map(str, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"