diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 27d996869..9117a369f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.3.6 +current_version = 2.3.7 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P.*)-(?P\d+))? diff --git a/README.md b/README.md index 36ce219cf..21e3aa5e0 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@

Incident Response Investigation System
- Current Version v2.3.6 + Current Version v2.3.7
Online Demonstration

@@ -52,7 +52,7 @@ git clone https://github.com/dfir-iris/iris-web.git cd iris-web # Checkout to the last tagged version -git checkout v2.3.6 +git checkout v2.3.7 # Copy the environment file cp .env.model .env diff --git a/docker-compose.yml b/docker-compose.yml index ad577143f..dda7230e8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -27,7 +27,7 @@ services: build: context: docker/db container_name: iriswebapp_db - image: iriswebapp_db:v2.3.6 + image: iriswebapp_db:v2.3.7 restart: always # Used for debugging purposes, should be deleted for production ports: @@ -47,7 +47,7 @@ services: build: context: . dockerfile: docker/webApp/Dockerfile - image: iriswebapp_app:v2.3.6 + image: iriswebapp_app:v2.3.7 container_name: iriswebapp_app command: ['nohup', './iris-entrypoint.sh', 'iriswebapp'] volumes: @@ -85,7 +85,7 @@ services: build: context: . dockerfile: docker/webApp/Dockerfile - image: iriswebapp_app:v2.3.6 + image: iriswebapp_app:v2.3.7 container_name: iriswebapp_worker command: ['./wait-for-iriswebapp.sh', 'app:8000', './iris-entrypoint.sh', 'iris-worker'] volumes: @@ -121,7 +121,7 @@ services: args: NGINX_CONF_GID: 1234 NGINX_CONF_FILE: nginx.conf - image: iriswebapp_nginx:v2.3.6 + image: iriswebapp_nginx:v2.3.7 container_name: iriswebapp_nginx environment: - IRIS_UPSTREAM_SERVER diff --git a/source/app/configuration.py b/source/app/configuration.py index 92395a327..dd617b13a 100644 --- a/source/app/configuration.py +++ b/source/app/configuration.py @@ -265,7 +265,7 @@ class CeleryConfig: # --------- APP --------- class Config: # Handled by bumpversion - IRIS_VERSION = "v2.3.6" + IRIS_VERSION = "v2.3.7" API_MIN_VERSION = "2.0.0" API_MAX_VERSION = "2.0.3"