version 5.22.1

This commit is contained in:
Kovid Goyal 2021-06-25 23:12:45 +05:30
parent ffe2207022
commit eda2a4421f
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 # - title by author
# }}} # }}}
{{{ 5.22.0 2021-06-25 {{{ 5.22.1 2021-06-25
:: new features :: new features
@ -53,6 +53,8 @@
- Conversion: Fix the smarten punctuation option not applying to inserted jacket page - Conversion: Fix the smarten punctuation option not applying to inserted jacket page
- 5.22.1 fixes a typo in the previous release that broke device detection on Linux
:: improved recipes :: improved recipes
- TheAtlantic.com - TheAtlantic.com
- Hindu - Hindu

View File

@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv
import sys, locale, codecs, os, collections, collections.abc import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (5, 22, 0) numeric_version = (5, 22, 1)
__version__ = '.'.join(map(unicode_type, numeric_version)) __version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"