Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v10 GA Launch (1.0.0) #145

Merged
merged 3 commits into from
Aug 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 5 additions & 15 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,28 +1,18 @@
A Python driver for `Fauna <https://fauna.com>`_.
=================================================

.. warning::
This driver is in beta release and not recommended for production use.
It operates with the Fauna database service via an API which is also in
beta release and is not recommended for production use. This driver is
not compatible with v4 or earlier versions of Fauna. Please feel free to
contact product@fauna.com to learn about our special Early Access program
for FQL v10.


The Official Python Driver for `Fauna <https://fauna.com>`_.
============================================================

.. image:: https://img.shields.io/pypi/v/fauna.svg?maxAge=21600
:target: https://pypi.python.org/pypi/fauna
.. image:: https://img.shields.io/badge/license-MPL_2.0-blue.svg?maxAge=2592000
:target: https://raw.githubusercontent.com/fauna/fauna-python/main/LICENSE

See the `Fauna Documentation <https://fqlx-beta--fauna-docs.netlify.app/fqlx/beta/>`_
for additional information how to configure and query your databases.

This driver can only be used with FQL v10, and is not compatible with earlier versions
of FQL. To query your databases with earlier API versions, see
the `faunadb <https://pypi.org/project/faunadb/>`_ package.

See the `Fauna Documentation <https://docs.fauna.com/fauna/current/>`_
for additional information how to configure and query your databases.


Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion fauna/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = "Fauna"
__version__ = "0.8.1"
__version__ = "1.0.0"
__api_version__ = "10"
__author__ = "Fauna, Inc"
__license__ = "MPL 2.0"
Expand Down