version 3.33.1

there was a bug in the upload script for 3.33.0 that caused the
installers to not be propoerly uploaded, so re-releasing.
This commit is contained in:
Kovid Goyal 2018-10-19 10:19:17 +05:30
parent 17eff935eb
commit cea4b065d0
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 3.33.0 - version: 3.33.1
date: 2018-10-19 date: 2018-10-19
new features: new features:

View File

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