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

@@ -2,6 +2,7 @@ from django.apps import AppConfig
from django.utils.functional import cached_property
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
from pretix.base.plugins import PluginType
@@ -13,7 +14,7 @@ class TicketOutputPdfApp(AppConfig):
type = PluginType.PAYMENT
name = _("PDF ticket output")
author = _("the pretix team")
version = '1.0.0'
version = version
description = _("This plugin allows you to print out tickets as PDF files")
def ready(self):