From 3b7c0ff733933ebeafe6ebbb0630f90af517cd6b Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 26 Oct 2017 19:57:47 +1000 Subject: [PATCH] bump version --- anki/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/__init__.py b/anki/__init__.py index 29b1d36e4..7c2efeb94 100644 --- a/anki/__init__.py +++ b/anki/__init__.py @@ -10,6 +10,6 @@ if sys.version_info[0] < 3 or sys.version_info[1] < 6: if sys.getfilesystemencoding().lower() in ("ascii", "ansi_x3.4-1968"): raise Exception("Anki requires a UTF-8 locale.") -version="2.1.0beta21" # build scripts grep this line, so preserve formatting +version="2.1.0beta22" # build scripts grep this line, so preserve formatting from anki.storage import Collection __all__ = ["Collection"]