From 7ad801dc28342f028237ebd8417621e263e66235 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Fri, 15 Dec 2017 14:19:54 +0100 Subject: [PATCH] Release v0.0.2 --- doc/50-development.md | 12 +++++++++++- setup.py | 4 ++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/doc/50-development.md b/doc/50-development.md index 278b521..a4853df 100644 --- a/doc/50-development.md +++ b/doc/50-development.md @@ -52,8 +52,18 @@ python3 setup.py develop ``` -VERSION=0.0.1 +VERSION=0.0.2 +``` + +``` +sed -i "s/version = '.*'/version = '$VERSION'/g" setup.py +sed -i "s/archive\/.*'/archive\/v$VERSION.tar.gz'/g" setup.py +git commit -av -m "Release v$VERSION" +``` + + +``` git tag -u D14A1F16 -m "Version $VERSION" v$VERSION ``` diff --git a/setup.py b/setup.py index 98ff6d6..fb7c372 100644 --- a/setup.py +++ b/setup.py @@ -12,11 +12,11 @@ setup( name = 'pretix-invoice-net', - version = '0.0.1', + version = '0.0.2', description = 'Pretix invoice renderer plugin for NETWAYS', long_description = long_description, url = 'https://github.com/NETWAYS/pretix-invoice-net', - download_url = 'https://github.com/NETWAYS/pretix-invoice-net/archive/v0.0.1.tar.gz', + download_url = 'https://github.com/NETWAYS/pretix-invoice-net/archive/v0.0.2.tar.gz', keywords = [ 'pretix', 'tickets', 'events', 'invoice', 'pdf' ], author = 'NETWAYS GmbH', author_email = 'support@netways.de',