From 407aaae79719c4e6ef8319b396bd667161ad2e76 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 14 Jul 2016 21:37:41 +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 7f688e9f9..9d2e00d3e 100644 --- a/anki/__init__.py +++ b/anki/__init__.py @@ -9,6 +9,6 @@ if sys.version_info[0] < 3: elif sys.version_info[1] < 4: raise Exception("Anki requires Python 3.4+") -version="2.1.0a3" # build scripts grep this line, so preserve formatting +version="2.1.0a4" # build scripts grep this line, so preserve formatting from anki.storage import Collection __all__ = ["Collection"]