Skip to content

Commit

Permalink
Bump version: 2.1.0-dev → 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dlrsp-dev committed Jul 29, 2023
1 parent 30cf589 commit c59f5c8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = False
current_version = 2.1.0-dev
current_version = 2.1.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ package = "django_errors"
package_dir = "src"
filename = "CHANGELOG.rst"
directory = "news/"
version = "2.1.0-dev"
version = "2.1.0"

# For rendering properly for this project
issue_format = "`#{issue} <https://github.com/DLRSP/django-errors/issues/{issue}>`_"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal=1

[metadata]
name = django-errors
version = 2.1.0-dev
version = 2.1.0
url = https://github.com/DLRSP/django-errors
author = DLRSP
author_email = dlrsp.dev@gmail.com
Expand Down
2 changes: 1 addition & 1 deletion src/django_errors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""
import django

__version__ = "2.1.0-dev"
__version__ = "2.1.0"
__version_info__ = tuple(int(i) if i.isdigit() else i for i in __version__.split("."))
__license__ = "MIT"
__title__ = "django_errors"
Expand Down

0 comments on commit c59f5c8

Please sign in to comment.