From 72cd3c0ca925eaf65a776d7a6867ed3c722fae83 Mon Sep 17 00:00:00 2001 From: Jakub Vysoky Date: Tue, 7 Feb 2023 14:35:32 +0100 Subject: [PATCH] bump major version single receiver is a major change for this plugin it deserves a bump not to be confused with the previous one --- pretix_eth/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pretix_eth/__init__.py b/pretix_eth/__init__.py index 2d76428a..a8804e9f 100644 --- a/pretix_eth/__init__.py +++ b/pretix_eth/__init__.py @@ -12,7 +12,7 @@ class PretixPluginMeta: category = 'PAYMENT' description = ugettext_lazy('An ethereum payment provider plugin for pretix software') visible = True - version = '2.0.6-dev' + version = '3.0.0-dev' def ready(self): from . import signals # NOQA diff --git a/setup.py b/setup.py index 9a44cc31..73900f6e 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def run(self): setup( name='pretix-eth-payment-plugin', - version='2.0.6-dev', + version='3.0.0-dev', description='Ethereum payment provider plugin for pretix software', long_description=long_description, long_description_content_type='text/markdown',