From f8fe1993a6a1e1c8c2995d681ca0dc81df05f3f8 Mon Sep 17 00:00:00 2001 From: whikernel Date: Thu, 30 Nov 2023 16:14:42 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.3.4=20=E2=86=92=202.3.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 4 ++-- docker-compose.yml | 8 ++++---- source/app/configuration.py | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 970508902..6813be439 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.3.4 +current_version = 2.3.5 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P.*)-(?P\d+))? diff --git a/README.md b/README.md index af40ae346..0eceb411d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@

Incident Response Investigation System
- Current Version v2.3.4 + Current Version v2.3.5
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.4 +git checkout v2.3.5 # Copy the environment file cp .env.model .env diff --git a/docker-compose.yml b/docker-compose.yml index 5b1aee24b..43452f555 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.4 + image: iriswebapp_db:v2.3.5 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.4 + image: iriswebapp_app:v2.3.5 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.4 + image: iriswebapp_app:v2.3.5 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.4 + image: iriswebapp_nginx:v2.3.5 container_name: iriswebapp_nginx environment: - IRIS_UPSTREAM_SERVER diff --git a/source/app/configuration.py b/source/app/configuration.py index 5ac8b3212..cf063d090 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.4" + IRIS_VERSION = "v2.3.5" API_MIN_VERSION = "2.0.0" API_MAX_VERSION = "2.0.3"