From 4c38eef492b880409af6d0f68b511ce1c3fbe185 Mon Sep 17 00:00:00 2001
From: Jakub Bednar <jakub.bednar@gmail.com>
Date: Fri, 26 Jan 2024 09:39:58 +0100
Subject: [PATCH 1/2] fix: render README.rst at GitHub

Removed unsupported text role :class:. For more info see https://docutils.sourceforge.io/docs/ref/rst/roles.html
---
 README.rst | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/README.rst b/README.rst
index a613a41a..e22f8eab 100644
--- a/README.rst
+++ b/README.rst
@@ -626,7 +626,7 @@ Queries
 The result retrieved by `QueryApi <https://github.com/influxdata/influxdb-client-python/blob/master/influxdb_client/client/query_api.py>`_  could be formatted as a:
 
 1. Flux data structure: `FluxTable <https://github.com/influxdata/influxdb-client-python/blob/master/influxdb_client/client/flux_table.py#L5>`_, `FluxColumn <https://github.com/influxdata/influxdb-client-python/blob/master/influxdb_client/client/flux_table.py#L22>`_ and `FluxRecord <https://github.com/influxdata/influxdb-client-python/blob/master/influxdb_client/client/flux_table.py#L31>`_
-2. :class:`~influxdb_client.client.flux_table.CSVIterator` which will iterate over CSV lines
+2. :code:`influxdb_client.client.flux_table.CSVIterator` which will iterate over CSV lines
 3. Raw unprocessed results as a ``str`` iterator
 4. `Pandas DataFrame <https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html>`_
 
@@ -1403,12 +1403,12 @@ or use the ``[async]`` extra:
 
 Async APIs
 """"""""""
-All async APIs are available via :class:`~influxdb_client.client.influxdb_client_async.InfluxDBClientAsync`.
+All async APIs are available via :code:`influxdb_client.client.influxdb_client_async.InfluxDBClientAsync`.
 The ``async`` version of the client supports following asynchronous APIs:
 
-* :class:`~influxdb_client.client.write_api_async.WriteApiAsync`
-* :class:`~influxdb_client.client.query_api_async.QueryApiAsync`
-* :class:`~influxdb_client.client.delete_api_async.DeleteApiAsync`
+* :code:`influxdb_client.client.write_api_async.WriteApiAsync`
+* :code:`influxdb_client.client.query_api_async.QueryApiAsync`
+* :code:`influxdb_client.client.delete_api_async.DeleteApiAsync`
 * Management services into ``influxdb_client.service`` supports async operation
 
 and also check to readiness of the InfluxDB via ``/ping`` endpoint:
@@ -1432,7 +1432,7 @@ and also check to readiness of the InfluxDB via ``/ping`` endpoint:
 Async Write API
 """""""""""""""
 
-The :class:`~influxdb_client.client.write_api_async.WriteApiAsync` supports ingesting data as:
+The :code:`influxdb_client.client.write_api_async.WriteApiAsync` supports ingesting data as:
 
 * ``string`` or ``bytes`` that is formatted as a InfluxDB's line protocol
 * `Data Point <https://github.com/influxdata/influxdb-client-python/blob/master/influxdb_client/client/write/point.py#L16>`__ structure
@@ -1470,13 +1470,13 @@ The :class:`~influxdb_client.client.write_api_async.WriteApiAsync` supports inge
 Async Query API
 """""""""""""""
 
-The :class:`~influxdb_client.client.query_api_async.QueryApiAsync` supports retrieve data as:
+The :code:`influxdb_client.client.query_api_async.QueryApiAsync` supports retrieve data as:
 
-* List of :class:`~influxdb_client.client.flux_table.FluxTable`
-* Stream of :class:`~influxdb_client.client.flux_table.FluxRecord` via :class:`~typing.AsyncGenerator`
+* List of :code:`influxdb_client.client.flux_table.FluxTable`
+* Stream of :code:`influxdb_client.client.flux_table.FluxRecord` via :code:`typing.AsyncGenerator`
 * `Pandas DataFrame <https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html>`_
-* Stream of `Pandas DataFrame <https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html>`_ via :class:`~typing.AsyncGenerator`
-* Raw :class:`~str` output
+* Stream of `Pandas DataFrame <https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html>`_ via :code:`typing.AsyncGenerator`
+* Raw :code:`str` output
 
  .. code-block:: python
 

From ec07c241f756ba7bcfdd0cc2f36580c61ce29293 Mon Sep 17 00:00:00 2001
From: Jakub Bednar <jakub.bednar@gmail.com>
Date: Fri, 26 Jan 2024 09:51:35 +0100
Subject: [PATCH 2/2] docs: update CHANGELOG.md

---
 CHANGELOG.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2f2cb4df..cb322724 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,9 @@
 ### Bug Fixes
 1. [#562](https://github.com/influxdata/influxdb-client-python/pull/562): Use `ThreadPoolScheduler` for `WriteApi`'s batch subject instead of `TimeoutScheduler` to prevent creating unnecessary threads repeatedly
 
+### Documentation
+1. [#635](https://github.com/influxdata/influxdb-client-python/pull/635): Fix render `README.rst` at GitHub
+
 ## 1.39.0 [2023-12-05]
 
 ### Features