|  | 
| 2 | 2 | [](https://github.com/IBM/cloudant-python-sdk/releases/latest) | 
| 3 | 3 | [](https://ibm.github.io/cloudant-python-sdk/) | 
| 4 | 4 | 
 | 
| 5 |  | -# IBM Cloudant Python SDK Version 0.10.4 | 
|  | 5 | +# IBM Cloudant Python SDK Version 0.10.5 | 
| 6 | 6 | 
 | 
| 7 | 7 | IBM Cloudant Python SDK is a client library that interacts with the | 
| 8 | 8 | [IBM Cloudant APIs](https://cloud.ibm.com/apidocs/cloudant?code=python). | 
| @@ -128,13 +128,13 @@ project: | 
| 128 | 128 | To install, use `pip` or `easy_install`: | 
| 129 | 129 | 
 | 
| 130 | 130 | ```bash | 
| 131 |  | -pip install --upgrade "ibmcloudant>=0.10.4" | 
|  | 131 | +pip install --upgrade "ibmcloudant>=0.10.5" | 
| 132 | 132 | ``` | 
| 133 | 133 | 
 | 
| 134 | 134 | or | 
| 135 | 135 | 
 | 
| 136 | 136 | ```bash | 
| 137 |  | -easy_install --upgrade "ibmcloudant>=0.10.4" | 
|  | 137 | +easy_install --upgrade "ibmcloudant>=0.10.5" | 
| 138 | 138 | ``` | 
| 139 | 139 | 
 | 
| 140 | 140 | ## Using the SDK | 
| @@ -599,7 +599,7 @@ You have deleted the document. | 
| 599 | 599 | 
 | 
| 600 | 600 | #### Further code examples | 
| 601 | 601 | 
 | 
| 602 |  | -For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/examples#examples-for-python). | 
|  | 602 | +For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/examples#examples-for-python). | 
| 603 | 603 | 
 | 
| 604 | 604 | ### Error handling | 
| 605 | 605 | 
 | 
| @@ -789,7 +789,7 @@ The changes follower requires the client to have HTTP timeouts of at least 1 min | 
| 789 | 789 | instantiation if it is insufficient. The default client configuration has sufficiently long timeouts. | 
| 790 | 790 | 
 | 
| 791 | 791 | For use-cases where these configuration limitations are too restrictive then write code to use the SDK's | 
| 792 |  | -[POST `_changes` API](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/examples#postchanges) instead of the follower. | 
|  | 792 | +[POST `_changes` API](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/examples#postchanges) instead of the follower. | 
| 793 | 793 | 
 | 
| 794 | 794 | #### Error suppression | 
| 795 | 795 | 
 | 
| @@ -823,7 +823,7 @@ The follower is not optimized for some use cases and it is not recommended to us | 
| 823 | 823 | * Setting `include_docs` and larger document sizes (for example > 10 kiB). | 
| 824 | 824 | * The volume of changes is very high (if the rate of changes in the database exceeds the follower's rate of pulling them it can never catch-up). | 
| 825 | 825 | 
 | 
| 826 |  | -In these use-cases use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/examples#postchanges) | 
|  | 826 | +In these use-cases use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/examples#postchanges) | 
| 827 | 827 | for  specific control over the number of change requests made and the content size of the responses. | 
| 828 | 828 | 
 | 
| 829 | 829 | #### Checkpoints | 
| @@ -1055,22 +1055,22 @@ then a `429 Too Many Requests` error occurs. | 
| 1055 | 1055 | Pagination is available for these operations: | 
| 1056 | 1056 | * Query all documents [global](https://cloud.ibm.com/apidocs/cloudant?code=python#postalldocs) | 
| 1057 | 1057 |   and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=python#postpartitionalldocs) | 
| 1058 |  | -  * [Global all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/AllDocsPagination.py) | 
| 1059 |  | -  * [Partitioned all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/partition_all_docs_pagination.py) | 
|  | 1058 | +  * [Global all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/AllDocsPagination.py) | 
|  | 1059 | +  * [Partitioned all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/partition_all_docs_pagination.py) | 
| 1060 | 1060 | * Query all [design documents](https://cloud.ibm.com/apidocs/cloudant?code=python#postdesigndocs) | 
| 1061 |  | -  * [Design documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/design_docs_pagination.py) | 
|  | 1061 | +  * [Design documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/design_docs_pagination.py) | 
| 1062 | 1062 | * Query with selector syntax [global](https://cloud.ibm.com/apidocs/cloudant?code=python#postfind) | 
| 1063 | 1063 |   and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=python#postpartitionfind) | 
| 1064 |  | -  * [Global find selector query examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/find_pagination.py) | 
| 1065 |  | -  * [Partitioned find selector query examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/partition_find_pagination.py) | 
|  | 1064 | +  * [Global find selector query examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/find_pagination.py) | 
|  | 1065 | +  * [Partitioned find selector query examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/partition_find_pagination.py) | 
| 1066 | 1066 | * Query a search index [global](https://cloud.ibm.com/apidocs/cloudant?code=python#postsearch) | 
| 1067 | 1067 |   and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=python#postpartitionsearch) | 
| 1068 |  | -  * [Global search examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/search_pagination.py) | 
| 1069 |  | -  * [Partitioned search examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/partition_search_pagination.py) | 
|  | 1068 | +  * [Global search examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/search_pagination.py) | 
|  | 1069 | +  * [Partitioned search examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/partition_search_pagination.py) | 
| 1070 | 1070 | * Query a MapReduce view [global](https://cloud.ibm.com/apidocs/cloudant?code=python#postview) | 
| 1071 | 1071 |   and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=python#postpartitionview) | 
| 1072 |  | -  * [Global view examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/view_pagination.py) | 
| 1073 |  | -  * [Partitioned view examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/partition_view_pagination.py) | 
|  | 1072 | +  * [Global view examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/view_pagination.py) | 
|  | 1073 | +  * [Partitioned view examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/partition_view_pagination.py) | 
| 1074 | 1074 | 
 | 
| 1075 | 1075 | The examples presented in this `README` are for all documents in a partition. | 
| 1076 | 1076 | The links in the list are to equivalent examples for each of the other available operations. | 
| @@ -1263,7 +1263,7 @@ If you encounter an issue with the project, you are welcome to submit a | 
| 1263 | 1263 | 
 | 
| 1264 | 1264 | Before you submit a bug report, search for | 
| 1265 | 1265 | [similar issues](https://github.com/IBM/cloudant-python-sdk/issues?q=is%3Aissue) and review the | 
| 1266 |  | -[KNOWN_ISSUES file](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet. | 
|  | 1266 | +[KNOWN_ISSUES file](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet. | 
| 1267 | 1267 | 
 | 
| 1268 | 1268 | Please consult the [security policy](https://github.com/IBM/cloudant-python-sdk/security/policy) before opening security related issues. | 
| 1269 | 1269 | 
 | 
| @@ -1293,8 +1293,8 @@ Find more open source projects on the [IBM GitHub](http://ibm.github.io/) page. | 
| 1293 | 1293 | 
 | 
| 1294 | 1294 | ## Contributing | 
| 1295 | 1295 | 
 | 
| 1296 |  | -For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/CONTRIBUTING.md). | 
|  | 1296 | +For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/CONTRIBUTING.md). | 
| 1297 | 1297 | 
 | 
| 1298 | 1298 | ## License | 
| 1299 | 1299 | 
 | 
| 1300 |  | -This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/LICENSE). | 
|  | 1300 | +This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/LICENSE). | 
0 commit comments