From 37dd34d3c8487ce16b07e6535ac81bed1331d90e Mon Sep 17 00:00:00 2001
From: "github-actions[bot]" <github-actions[bot]@users.noreply.github.com>
Date: Mon, 1 Jul 2024 12:38:00 +0000
Subject: [PATCH] =?UTF-8?q?bump:=20version=200.18.5=20=E2=86=92=200.19.0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 CHANGELOG.md   | 6 ++++++
 pyproject.toml | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 30b3bd9d..1bf41c81 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 0.19.0 (2024-07-01)
+
+### Feat
+
+- **structured-concurrency**: first step to introduce structured concurrency paradigm. Now StreamEngine will stop on a Stream crash (only when running with aiorun). Closes #60 due to the use of flag `stop_on_unhandled_errors` with aiorun. Related to #162 (#190)
+
 ## 0.18.5 (2024-06-20)
 
 ### Fix
diff --git a/pyproject.toml b/pyproject.toml
index 038ef6a5..2da497dc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "kstreams"
-version = "0.18.5"
+version = "0.19.0"
 description = "Build simple kafka streams applications"
 authors = ["Marcos Schroh <marcos.schroh@kpn.com>"]
 license = "Apache-2.0"
@@ -65,7 +65,7 @@ exclude = '''
 '''
 
 [tool.commitizen]
-version = "0.18.5"
+version = "0.19.0"
 tag_format = "$version"
 version_files = [
     "pyproject.toml:version",