Skip to content

Commit 0aa77f6

Browse files
committed
Bump version: 2.1.0 → 2.2.0
1 parent 7ef8141 commit 0aa77f6

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.1.0
2+
current_version = 2.2.0
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.1.0</i>
9+
<i>Current Version v2.2.0</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.1.0
55+
git checkout v2.2.0
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
@@ -28,7 +28,7 @@ services:
2828
build:
2929
context: docker/db
3030
container_name: iriswebapp_db
31-
image: iriswebapp_db:v2.1.0
31+
image: iriswebapp_db:v2.2.0
3232
restart: always
3333
# Used for debugging purposes, should be deleted for production
3434
ports:
@@ -48,7 +48,7 @@ services:
4848
build:
4949
context: .
5050
dockerfile: docker/webApp/Dockerfile
51-
image: iriswebapp_app:v2.1.0
51+
image: iriswebapp_app:v2.2.0
5252
container_name: iriswebapp_app
5353
command: ['nohup', './iris-entrypoint.sh', 'iriswebapp']
5454
volumes:
@@ -86,7 +86,7 @@ services:
8686
build:
8787
context: .
8888
dockerfile: docker/webApp/Dockerfile
89-
image: iriswebapp_app:v2.1.0
89+
image: iriswebapp_app:v2.2.0
9090
container_name: iriswebapp_worker
9191
command: ['./wait-for-iriswebapp.sh', 'app:8000', './iris-entrypoint.sh', 'iris-worker']
9292
volumes:
@@ -122,7 +122,7 @@ services:
122122
args:
123123
NGINX_CONF_GID: 1234
124124
NGINX_CONF_FILE: nginx.conf
125-
image: iriswebapp_nginx:v2.1.0
125+
image: iriswebapp_nginx:v2.2.0
126126
container_name: iriswebapp_nginx
127127
environment:
128128
- 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.1.0"
268+
IRIS_VERSION = "v2.2.0"
269269

270270
API_MIN_VERSION = "2.0.0"
271271
API_MAX_VERSION = "2.0.2"

0 commit comments

Comments
 (0)