diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 24cf5683d..2ddde8e9e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4.6 +current_version = 2.4.7 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P.*)-(?P\d+))? diff --git a/README.md b/README.md index a61e945f6..5bd20acc9 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@

Incident Response Investigation System
- Current Version v2.4.6 + Current Version v2.4.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.4.6 +git checkout v2.4.7 # Copy the environment file cp .env.model .env diff --git a/docker-compose.yml b/docker-compose.yml index dd1a4a921..38abb59ee 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -28,7 +28,7 @@ services: build: context: docker/db container_name: iriswebapp_db - image: iriswebapp_db:v2.4.6 + image: iriswebapp_db:v2.4.7 restart: always # Used for debugging purposes, should be deleted for production ports: @@ -48,7 +48,7 @@ services: build: context: . dockerfile: docker/webApp/Dockerfile - image: iriswebapp_app:v2.4.6 + image: iriswebapp_app:v2.4.7 container_name: iriswebapp_app command: ['nohup', './iris-entrypoint.sh', 'iriswebapp'] volumes: @@ -86,7 +86,7 @@ services: build: context: . dockerfile: docker/webApp/Dockerfile - image: iriswebapp_app:v2.4.6 + image: iriswebapp_app:v2.4.7 container_name: iriswebapp_worker restart: always command: ['./wait-for-iriswebapp.sh', 'app:8000', './iris-entrypoint.sh', 'iris-worker'] @@ -123,7 +123,7 @@ services: args: NGINX_CONF_GID: 1234 NGINX_CONF_FILE: nginx.conf - image: iriswebapp_nginx:v2.4.6 + image: iriswebapp_nginx:v2.4.7 container_name: iriswebapp_nginx environment: - IRIS_UPSTREAM_SERVER diff --git a/source/app/configuration.py b/source/app/configuration.py index a93e5d0df..14efd291e 100644 --- a/source/app/configuration.py +++ b/source/app/configuration.py @@ -263,7 +263,7 @@ class CeleryConfig: # --------- APP --------- class Config: # Handled by bumpversion - IRIS_VERSION = "v2.4.6" # DO NOT EDIT THIS LINE MANUALLY + IRIS_VERSION = "v2.4.7" # DO NOT EDIT THIS LINE MANUALLY if os.environ.get('IRIS_DEMO_VERSION') is not None and os.environ.get('IRIS_DEMO_VERSION') != 'None': IRIS_VERSION = os.environ.get('IRIS_DEMO_VERSION')