Skip to content

Commit

Permalink
Version 0.0.114 (#54)
Browse files Browse the repository at this point in the history
* increase version

* fix empty execution id
  • Loading branch information
goFrendiAsgard authored Nov 27, 2023
1 parent 87b920a commit b4ed9f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "zrb"
version = "0.0.113"
version = "0.0.114"
authors = [
{ name="Go Frendi Gunawan", email="gofrendiasgard@gmail.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/zrb/task/base_task_composite.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(
self._execution_id = ''

def _set_execution_id(self, execution_id: str):
if self._execution_id != '':
if self._execution_id == '':
self._execution_id = execution_id

def set_name(self, new_name: str):
Expand Down

0 comments on commit b4ed9f0

Please sign in to comment.