Async transformed procedures will not catch Exception anymore.

Bump version to 2.3.7.
This commit is contained in:
cheatfate 2020-03-03 13:42:43 +02:00
parent fe1b1a6983
commit 56fbdff096
No known key found for this signature in database
GPG Key ID: 46ADD633A7201F95
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
packageName = "chronos"
version = "2.3.6"
version = "2.3.7"
author = "Status Research & Development GmbH"
description = "Chronos"
license = "Apache License 2.0 or MIT"

View File

@ -52,7 +52,7 @@ template createCb(retFutureSym, iteratorNameSym,
{.pop.}
except CancelledError:
retFutureSym.cancel()
except Exception as exc:
except CatchableError as exc:
futureVarCompletions
if retFutureSym.finished():