Skip to content

Commit

Permalink
Release v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Friedrich committed Dec 15, 2017
1 parent e3b3cc8 commit 7ad801d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion doc/50-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '[email protected]',
Expand Down

0 comments on commit 7ad801d

Please sign in to comment.