From 35bf812b5f60f5e3465582783fb00e7eeef1a801 Mon Sep 17 00:00:00 2001 From: Curtis Bray Date: Mon, 14 Aug 2023 18:52:52 -0700 Subject: [PATCH 1/3] Update README for v10 GA launch --- README.rst | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index a64615d..59a1fa8 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ -FaunaDB Python -============== +The Official Python driver for v4 API of Fauna +============================================== .. image:: https://img.shields.io/codecov/c/github/fauna/faunadb-python/master.svg?maxAge=21600 :target: https://codecov.io/gh/fauna/faunadb-python @@ -10,6 +10,8 @@ FaunaDB Python Python driver for `FaunaDB `_. +Note: This driver supports an older version of the Fauna API. The latest version of the official +Fauna Python Driver is located [here](https://pypi.org/project/faunadb/). Installation ------------ @@ -35,7 +37,7 @@ Documentation Driver documentation is available at https://fauna.github.io/faunadb-python/4.5.0/api/. -See the `FaunaDB Documentation `__ for a complete API reference, or look in `tests`_ +See the `FaunaDB Documentation `__ for a complete API reference, or look in `tests`_ for more examples. @@ -94,7 +96,7 @@ Observing Metrics Its possible to observe each query's metrics by providing an "observer" callback. -More information on query metrics is available in the `FaunaDB Documentation `__. +More information on query metrics is available in the `FaunaDB Documentation `__. Here is a simple example: From 591c0f3804a1ef98e304aeaf2ac69f2e92931f99 Mon Sep 17 00:00:00 2001 From: Curtis Bray Date: Mon, 14 Aug 2023 18:56:03 -0700 Subject: [PATCH 2/3] Update CircleCI config to fix tests --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index a77abcb..8e3df0e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,6 +28,10 @@ commands: description: "Run Python tests" steps: - checkout + + - setup_remote_docker: + version: 24.0 + docker_layer_caching: true - run: name: Install codecov From 0d6418f651aba617dc4fb9bf0e011dd95d83cfe8 Mon Sep 17 00:00:00 2001 From: Curtis Bray Date: Tue, 15 Aug 2023 14:23:23 -0700 Subject: [PATCH 3/3] Add note about use of new driver version --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 59a1fa8..e5d4468 100644 --- a/README.rst +++ b/README.rst @@ -11,7 +11,8 @@ The Official Python driver for v4 API of Fauna Python driver for `FaunaDB `_. Note: This driver supports an older version of the Fauna API. The latest version of the official -Fauna Python Driver is located [here](https://pypi.org/project/faunadb/). +Fauna Python Driver is located [here](https://pypi.org/project/faunadb/) (we encourage all new +development to use this new version where possible). Installation ------------