Skip to content

Commit 01a44aa

Browse files
committed
Bump version: 2.3.1 → 2.3.2
1 parent 4696ff9 commit 01a44aa

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.3.1
2+
current_version = 2.3.2
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>.*)-(?P<build>\d+))?

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<p align="center">
77
Incident Response Investigation System
88
<br>
9-
<i>Current Version v2.3.1</i>
9+
<i>Current Version v2.3.2</i>
1010
<br>
1111
<a href="https://v200.beta.dfir-iris.org">Online Demonstration</a>
1212
</p>
@@ -52,7 +52,7 @@ git clone https://github.com/dfir-iris/iris-web.git
5252
cd iris-web
5353

5454
# Checkout to the last tagged version
55-
git checkout v2.3.1
55+
git checkout v2.3.2
5656

5757
# Copy the environment file
5858
cp .env.model .env

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
build:
2828
context: docker/db
2929
container_name: iriswebapp_db
30-
image: iriswebapp_db:v2.3.1
30+
image: iriswebapp_db:v2.3.2
3131
restart: always
3232
# Used for debugging purposes, should be deleted for production
3333
ports:
@@ -47,7 +47,7 @@ services:
4747
build:
4848
context: .
4949
dockerfile: docker/webApp/Dockerfile
50-
image: iriswebapp_app:v2.3.1
50+
image: iriswebapp_app:v2.3.2
5151
container_name: iriswebapp_app
5252
command: ['nohup', './iris-entrypoint.sh', 'iriswebapp']
5353
volumes:
@@ -85,7 +85,7 @@ services:
8585
build:
8686
context: .
8787
dockerfile: docker/webApp/Dockerfile
88-
image: iriswebapp_app:v2.3.1
88+
image: iriswebapp_app:v2.3.2
8989
container_name: iriswebapp_worker
9090
command: ['./wait-for-iriswebapp.sh', 'app:8000', './iris-entrypoint.sh', 'iris-worker']
9191
volumes:
@@ -121,7 +121,7 @@ services:
121121
args:
122122
NGINX_CONF_GID: 1234
123123
NGINX_CONF_FILE: nginx.conf
124-
image: iriswebapp_nginx:v2.3.1
124+
image: iriswebapp_nginx:v2.3.2
125125
container_name: iriswebapp_nginx
126126
environment:
127127
- IRIS_UPSTREAM_SERVER

source/app/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ class CeleryConfig:
265265
# --------- APP ---------
266266
class Config:
267267
# Handled by bumpversion
268-
IRIS_VERSION = "v2.3.1"
268+
IRIS_VERSION = "v2.3.2"
269269

270270
API_MIN_VERSION = "2.0.0"
271271
API_MAX_VERSION = "2.0.3"

0 commit comments

Comments
 (0)