From 02ca7f41bc8ce43a582fd429dda588c4cc7f220d Mon Sep 17 00:00:00 2001 From: Matt Wilde Date: Fri, 24 Feb 2023 14:29:21 -1000 Subject: [PATCH] Release v4.5.0 --- CHANGELOG.md | 5 ++++- faunadb/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9b401c..796abc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ -## 4.4.0 [current] +## 4.5.0 [current] +- Move from `hyper` to `httpx` to unblock usage of python-3.10. [#258](https://github.com/fauna/faunadb-python/pull/258) + +## 4.4.0 - Add `tags` and `traceparent` headers. [#256](https://github.com/fauna/faunadb-python/pull/256) ## 4.3.1 diff --git a/faunadb/__init__.py b/faunadb/__init__.py index 03499c4..aa0c510 100644 --- a/faunadb/__init__.py +++ b/faunadb/__init__.py @@ -1,5 +1,5 @@ __title__ = "FaunaDB" -__version__ = "4.4.0" +__version__ = "4.5.0" __api_version__ = "4" __author__ = "Fauna, Inc" __license__ = "MPL 2.0"