Changed all core plugin versions to stay in sync

This commit is contained in:
Raphael Michel
2015-09-08 20:58:24 +02:00
parent 2a3a3e1c3d
commit 2ec4cbeceb
10 changed files with 22 additions and 10 deletions

View File

@@ -1,6 +1,7 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
from pretix.base.plugins import PluginType
@@ -12,7 +13,7 @@ class StatisticsApp(AppConfig):
type = PluginType.ADMINFEATURE
name = _("Statistics")
author = _("the pretix team")
version = '1.0.0'
version = version
description = _("This plugin shows you various statistics.")
def ready(self):