From d6a7cc0a51718ad142ac2adcb4f4606cbf8a1a29 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 28 Jul 2017 18:38:42 +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 fb06567f3..c8b48bccd 100644 --- a/anki/__init__.py +++ b/anki/__init__.py @@ -7,6 +7,6 @@ import sys if sys.version_info[0] < 3 or sys.version_info[1] < 5: raise Exception("Anki requires Python 3.5+") -version="2.1.0beta4" # build scripts grep this line, so preserve formatting +version="2.1.0beta5" # build scripts grep this line, so preserve formatting from anki.storage import Collection __all__ = ["Collection"]