From 1cd95b1d6d7128ddf2e68e63193726ea19fd2ee7 Mon Sep 17 00:00:00 2001
From: Dilawar Singh <dilawar@subcom.tech>
Date: Fri, 7 Oct 2022 15:16:39 +0530
Subject: [PATCH] fix (ci): python3.8 compatibility issue with typing hints

---
 CHANGELOG.md    | 3 ++-
 bitia/helper.py | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 739fa74..7912aa8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,9 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ## [Unreleased]
 
-## [0.1.3] -
+## [0.2.0] - 2022-10-07
 ### Added
 - dev: Session support. Same connection is used multiple time.
+- Support for `create`, `logs` and `submit` endpoint.
 
 ### Fixed
 
diff --git a/bitia/helper.py b/bitia/helper.py
index 52cbee8..bf2acfe 100644
--- a/bitia/helper.py
+++ b/bitia/helper.py
@@ -212,7 +212,7 @@ def sha256sum(infile: Path) -> str:
     return h.hexdigest()
 
 
-def user_input_to_pipeline(user_input: str) -> tuple[Path, str]:
+def user_input_to_pipeline(user_input: str) -> T.Tuple[Path, str]:
     """Create a pipeline file from user_input"""
     if (path := Path(user_input)).exists():
         if path.is_dir():
-- 
GitLab