Skip to content

Commit 56dd7a1

Browse files
committed
Release 0.2.1
1 parent 3ff46c4 commit 56dd7a1

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ DOCKER_IMAGE_REDIS=stacklio/redis
1212

1313
OPA_VERSION=v0.21.1
1414
REDIS_VERSION=5.0.3
15-
VERSIONTAG=0.2.1dev
15+
VERSIONTAG=0.2.1
1616

1717

1818
######################################################

build/make/prepare/templates/docker-compose.yml.j2

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ networks:
66
services:
77
stackl-core:
88
restart: always
9-
image: stacklio/stackl-core:v0.2.1dev
9+
image: stacklio/stackl-core:v0.2.1
1010
depends_on:
1111
- stackl-redis
1212
networks:
@@ -38,7 +38,7 @@ services:
3838
- WEB_CONCURRENCY=1
3939
stackl-redis:
4040
restart: always
41-
image: stacklio/redis:v0.2.1dev
41+
image: stacklio/redis:v0.2.1
4242
ports:
4343
- 6379:6379
4444
volumes:
@@ -47,7 +47,7 @@ services:
4747
- stackl_bridge
4848
stackl-agent:
4949
restart: always
50-
image: stacklio/stackl-agent:v0.2.1dev
50+
image: stacklio/stackl-agent:v0.2.1
5151
volumes:
5252
- /tmp:/tmp
5353
depends_on:

stackl/agent/agent/kubernetes/outputs/output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def __init__(self, functional_requirement, stackl_instance_name: str):
1010
self.stack_instance = None
1111
self.output_file = ''
1212
self.stackl_host = f'http://{os.environ["STACKL_HOST"]}'
13-
self.stackl_cli_image = 'stacklio/stackl-cli:v0.2.1dev'
13+
self.stackl_cli_image = 'stacklio/stackl-cli:v0.2.1'
1414
self.stackl_cli_command = ['/bin/bash', '-c']
1515
self._functional_requirement = functional_requirement
1616
self._env_list = {}

stackl/agent/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "agent"
3-
version = "0.2.1dev"
3+
version = "0.2.1"
44
description = ""
55
authors = ["Frederic <[email protected]>"]
66

stackl/cli/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
__version__ = "0.2.1dev"
3+
__version__ = "0.2.1"
44

55
setup(
66
name='stackl-cli',

stackl/core/core/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
app = FastAPI(
1818
title="STACKL",
1919
description="stackl",
20-
version="0.2.1dev"
20+
version="0.2.1"
2121
)
2222

2323
app.include_router(infrastructure_base_router.router,

stackl/core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "core"
3-
version = "0.2.1dev"
3+
version = "0.2.1"
44
description = ""
55
authors = ["Frederic <[email protected]>"]
66

0 commit comments

Comments
 (0)