Skip to content

Commit

Permalink
Bump version: 0.3.2.dev2 → 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chiruzzimarco committed Dec 9, 2021
1 parent da5e500 commit d47545f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.2.dev2
current_version = 0.3.3
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.dev(?P<dev>\d+))?
Expand Down
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.2.dev2"
__version__ = "0.3.3"


import pluggy
Expand Down
2 changes: 1 addition & 1 deletion derex/runner/templates/Dockerfile-project.j2
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV DJANGO_SETTINGS_MODULE={{ project.settings.value }}
ENV SERVICE_VARIANT=lms
ENV DEREX_PROJECT={{ project.name }}
ENV DEREX_OPENEDX_VERSION={{ project.openedx_version.name }}
ENV DEREX_VERSION=0.3.2.dev2
ENV DEREX_VERSION=0.3.3
ENV MYSQL_DB_NAME={{ project.mysql_db_name }}
ENV MYSQL_USER={{ project.mysql_user }}
ENV MYSQL_PASSWORD={{ project.secret("mysql") }}
Expand Down
2 changes: 1 addition & 1 deletion docker-definition/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,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.2.dev2
ENV DEREX_VERSION=0.3.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@
tests_require=test_requirements,
extras_require=extras_requirements,
url="https://github.com/Abstract-Tech/derex.runner",
version="0.3.2.dev2",
version="0.3.3",
zip_safe=False,
)

0 comments on commit d47545f

Please sign in to comment.