Skip to content

Commit

Permalink
Bump version: 0.3.0.dev1 → 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chiruzzimarco committed Jun 24, 2021
1 parent b827c7c commit 8e267ca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
[bumpversion]
current_version = 0.3.0.dev1
current_version = 0.3.1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.dev(?P<dev>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}.dev{dev}
{major}.{minor}.{patch}
commit-args = --no-verify

[bumpversion:file:setup.py]

[bumpversion:file:derex/runner/__init__.py]

[bumpversion:file:docker-definition/Dockerfile]
search = DEREX_VERSION={current_version}
replace = DEREX_VERSION={new_version}
2 changes: 1 addition & 1 deletion derex/runner/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = """Silvio Tomatis"""
__email__ = "[email protected]"
__version__ = "0.3.0.dev1"
__version__ = "0.3.1"


import pluggy
Expand Down
2 changes: 1 addition & 1 deletion docker-definition/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -216,4 +216,4 @@ RUN --mount=type=tmpfs,target=/mysql/var/lib/mysql \

ENV DJANGO_SETTINGS_MODULE=derex_django.settings.default
ENV SERVICE_VARIANT=lms
ENV DEREX_VERSION=0.3.0.dev1
ENV DEREX_VERSION=0.3.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@
tests_require=test_requirements,
extras_require=extras_requirements,
url="https://github.com/Abstract-Tech/derex.runner",
version="0.3.0.dev1",
version="0.3.1",
zip_safe=False,
)

0 comments on commit 8e267ca

Please sign in to comment.