Skip to content

Commit e1f13b3

Browse files
committed
release: Bump 0.20.1
1 parent c18a988 commit e1f13b3

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

deployments/aws/ecs/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ variable "tracecat_ui_image" {
9292

9393
variable "tracecat_image_tag" {
9494
type = string
95-
default = "0.20.0"
95+
default = "0.20.1"
9696
}
9797

9898
variable "temporal_server_image" {

deployments/aws/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ variable "tracecat_ui_image" {
5757

5858
variable "tracecat_image_tag" {
5959
type = string
60-
default = "0.20.0"
60+
default = "0.20.1"
6161
}
6262

6363
variable "temporal_server_image" {

docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
- ./Caddyfile:/etc/caddy/Caddyfile
1515

1616
api:
17-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.0}
17+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.1}
1818
container_name: api
1919
restart: unless-stopped
2020
networks:
@@ -59,7 +59,7 @@ services:
5959
OLLAMA__API_URL: ${OLLAMA__API_URL}
6060

6161
worker:
62-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.0}
62+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.1}
6363
restart: unless-stopped
6464
networks:
6565
- core
@@ -83,7 +83,7 @@ services:
8383
command: ["python", "tracecat/dsl/worker.py"]
8484

8585
executor:
86-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.0}
86+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.1}
8787
restart: unless-stopped
8888
networks:
8989
- core
@@ -118,7 +118,7 @@ services:
118118
]
119119

120120
ui:
121-
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.20.0}
121+
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.20.1}
122122
container_name: ui
123123
restart: unless-stopped
124124
networks:

docs/self-hosting/deployment-options/docker-compose.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ Use the commands listed below to download the required configuration files
4545

4646
```bash
4747
# 1. Download the env.sh installation script
48-
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.0/env.sh
48+
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.1/env.sh
4949

5050
# 2. Download the .env.example template file (env.sh needs this to generate your .env file)
51-
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.0/.env.example
51+
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.1/.env.example
5252

5353
# 3. Make the env.sh script executable and run it
5454
chmod +x env.sh && ./env.sh
@@ -84,13 +84,13 @@ Tracecat uses Caddy as a reverse proxy.
8484
You'll need to download the following `Caddyfile` to configure this service.
8585

8686
```bash
87-
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.0/Caddyfile
87+
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.1/Caddyfile
8888
```
8989

9090
## Download Docker Compose File
9191

9292
```bash
93-
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.0/docker-compose.yml
93+
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.1/docker-compose.yml
9494
```
9595

9696
## Start Tracecat

docs/tutorials/updating.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ description: Learn how to safely update versions and run data migrations.
2323
version.
2424

2525
```
26-
curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.0/env-migration.sh
27-
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.0/.env.example
26+
curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.1/env-migration.sh
27+
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.1/.env.example
2828
```
2929
</Step>
3030
<Step title="Execute environment variables migration">
@@ -39,7 +39,7 @@ description: Learn how to safely update versions and run data migrations.
3939
Download the latest Docker Compose file.
4040

4141
```
42-
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.0/docker-compose.yml
42+
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.1/docker-compose.yml
4343
```
4444
</Step>
4545
<Step title="Restart Tracecat">

tracecat/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Tracecat is the open source Tines / Splunk SOAR alternative."""
22

3-
__version__ = "0.20.0"
3+
__version__ = "0.20.1"

0 commit comments

Comments
 (0)