From 5b7405174432ba9c81d603d9a86c443ac27d3806 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Thu, 25 Feb 2021 11:59:38 -0800 Subject: [PATCH] v0.13.0 * New APIs: `conn.retrying_transaction()` and `conn.raw_transaction()`. * `conn.transaction()` has been deprecated. * `conn.aclose()` implements graceful disconnect from the DB server. * Starting transactions in `conn.execute()` is no longer allowed. * `wait_until_available` parameter for connection APIs. --- edgedb/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edgedb/_version.py b/edgedb/_version.py index 4698f87d..fce0aa58 100644 --- a/edgedb/_version.py +++ b/edgedb/_version.py @@ -28,4 +28,4 @@ # supported platforms, publish the packages on PyPI, merge the PR # to the target branch, create a Git tag pointing to the commit. -__version__ = '0.13.0a5' +__version__ = '0.13.0'