Skip to content

Commit

Permalink
Bump version: 2.0.4 → 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guglielmo committed Jun 18, 2020
1 parent 0eff4f3 commit 8368dcf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.4
current_version = 2.1.0
commit = True
tag = True

Expand All @@ -9,7 +9,7 @@ parse = \((?P<major>\d+),\s(?P<minor>\d+),\s(?P<patch>\d+)\)

[coverage:run]
branch = True
omit =
omit =
.tox/*
*/__init__.py
*/migrations/*
Expand All @@ -19,16 +19,15 @@ omit =
setup.py
source = .


[mypy]
files=taskmanager
ignore_missing_imports=true
files = taskmanager
ignore_missing_imports = true

[mypy-*.migrations.*]
ignore_errors = True

[flake8]
exclude =
exclude =
__pycache__,
.eggs,
.git,
Expand All @@ -54,4 +53,3 @@ skip = venv,migrations

[metadata]
license-file = LICENSE.md

2 changes: 1 addition & 1 deletion taskmanager/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Django application to manage async tasks via admin interface, using uWSGI spooler."""

# PEP 440 - version number format
VERSION = (2, 0, 4)
VERSION = (2, 1, 0)

# PEP 396 - module version variable
__version__ = ".".join(map(str, VERSION))
Expand Down

0 comments on commit 8368dcf

Please sign in to comment.