Skip to content

Commit

Permalink
Bump version: 0.0.10 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Michał Pasternak authored and Michał Pasternak committed Jun 19, 2017
1 parent 08a2244 commit 4a3023d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion django_tables2_reports/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 0, 10)
VERSION = (0, 1, 0)

def get_version():
return ".".join(VERSION)
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.10
current_version = 0.1.0
commit = True
tag = True

Expand All @@ -10,3 +10,4 @@ replace = version='{new_version}'
[bumpversion:file:django_tables2_reports/__init__.py]
parse = \((?P<major>\d+), (?P<minor>\d+), (?P<patch>\d+)\)
serialize = ({major}, {minor}, {patch})

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def read(*rnames):

setup(
name="django-tables2-reports",
version="0.0.10",
version="version='0.1.0'",
author="Pablo Martin",
author_email="[email protected]",
description="With django-tables2-reports you can get a report (CSV, XLS) of any django-tables2 with minimal changes to your project",
Expand Down

0 comments on commit 4a3023d

Please sign in to comment.