Skip to content

Commit

Permalink
Bump version to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezhortal committed Apr 18, 2020
1 parent c97bcaf commit e1fe07b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion flake8_dashboard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
A flake8 plugin to generate a HTML dashboard with all the flake8 violations.
"""

__version__ = "0.1.3-dev0"
__version__ = "0.1.3"

from .plugin import DashboardReporter

Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[bumpversion]
current_version = 0.1.3-dev0
current_version = 0.1.3
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = beta
first_value = dev
values =
values =
dev
beta

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="flake8-dashboard",
version="0.1.3-dev0",
version="0.1.3",
description="Generate different reports of flake8 violations",
long_description=readme,
author="Andres Perez Hortal",
Expand Down

0 comments on commit e1fe07b

Please sign in to comment.