From 6a8226dd765096a11804f410aec8d0968bc3bcfa Mon Sep 17 00:00:00 2001 From: Fantix King Date: Wed, 19 Jun 2024 10:37:23 -0400 Subject: [PATCH] edgedb-python 2.0.0 New Features ============ * Support EdgeDB 5.0 "branch" connection option (by @vpetrovykh in #484 #485 #487) * Support EdgeDB 5.0 AI extension (by @fantix in #489 #490) Breaking Changes ================ * Enum values can now compare to user-defined enums successfully (#425) (by @fantix in bb7522c2 for #419) * Add optional default to codegen params (#426) (by @fantix in 21b024a6 for #422) Changes ======= * blocking client: fix connect and timeout, support IPv6 (#499) (by @fantix @zachary822 in 28a83fd0 for #486) Fixes ===== * Add test to check setting a computed global using with_globals. (#494) (by @dnwpark in 636bc0eb for #494) * Fix test and add Python 3.12 in CI (by @fantix in #498 #503) * Use result of pydantic_dataclass, will silence linters (#501) (by @AdrienPensart in d88187a2) * Extract ExecuteContext as in/out argument (#500) (by @fantix in 2fb7965a for #493) --- edgedb/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edgedb/_version.py b/edgedb/_version.py index e2475748..735846a7 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__ = '2.0.0a1' +__version__ = '2.0.0'