Skip to content

Commit

Permalink
Update version 0.7.4 -> 0.7.5 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudant-sdks-automation committed Mar 27, 2024
1 parent 2aa4080 commit 44b48d8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.4
current_version = 0.7.5
commit = True
message = Update version {current_version} -> {new_version} [skip ci]

Expand Down
18 changes: 9 additions & 9 deletions README.md
Expand Up @@ -2,7 +2,7 @@
[![Release](https://img.shields.io/github/v/release/IBM/cloudant-go-sdk?include_prereleases&sort=semver)](https://github.com/IBM/cloudant-go-sdk/releases/latest)
[![Docs](https://img.shields.io/static/v1?label=Godoc&message=latest&color=blue)](https://pkg.go.dev/github.com/IBM/cloudant-go-sdk)

# IBM Cloudant Go SDK Version 0.7.4
# IBM Cloudant Go SDK Version 0.7.5

IBM Cloudant Go SDK is a client library that interacts with the
[IBM Cloudant APIs](https://cloud.ibm.com/apidocs/cloudant?code=go).
Expand Down Expand Up @@ -123,7 +123,7 @@ project:

## Installation

The current version of this SDK: 0.7.4
The current version of this SDK: 0.7.5

There are a few different ways to download and add the
Cloudant Go SDK project for use by your Go application:
Expand All @@ -134,7 +134,7 @@ Use this command to download and add the SDK to allow your Go application to
use it:

```terminal
go get -u github.com/IBM/cloudant-go-sdk/cloudantv1@v0.7.4
go get -u github.com/IBM/cloudant-go-sdk/cloudantv1@v0.7.5
```

### Go modules
Expand Down Expand Up @@ -726,7 +726,7 @@ You have deleted the document.

#### Further code examples

For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-go-sdk/tree/v0.7.4/examples#examples-for-go).
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-go-sdk/tree/v0.7.5/examples#examples-for-go).

### Error handling

Expand Down Expand Up @@ -823,7 +823,7 @@ The changes follower requires the client to have HTTP timeouts of at least 1 min
instantiation if it is insufficient. The default client configuration has sufficiently long timeouts.

For use-cases where these configuration limitations are deemed too restrictive then it is recommended to
write code to use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-go-sdk/tree/v0.7.4/examples#postchanges) instead of the follower.
write code to use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-go-sdk/tree/v0.7.5/examples#postchanges) instead of the follower.

#### Error suppression

Expand Down Expand Up @@ -858,7 +858,7 @@ The follower is not optimized for some use cases and it is not recommended to us
* The volume of changes is very high (if the rate of changes in the database exceeds the follower's rate of pulling them it will never catch-up).

In these cases use-case specific control over the number of change requests made and the content size of the responses
may be achieved by using the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-go-sdk/tree/v0.7.4/examples#postchanges).
may be achieved by using the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-go-sdk/tree/v0.7.5/examples#postchanges).

#### Checkpointing

Expand Down Expand Up @@ -1213,7 +1213,7 @@ If you encounter an issue with the project, you are welcome to submit a

Before you submit a bug report, search for
[similar issues](https://github.com/IBM/cloudant-go-sdk/issues?q=is%3Aissue) and review the
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-go-sdk/tree/v0.7.4/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-go-sdk/tree/v0.7.5/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.

Please consult the [security policy](https://github.com/IBM/cloudant-go-sdk/security/policy) before opening security related issues.

Expand Down Expand Up @@ -1243,8 +1243,8 @@ Find more open source projects on the [IBM GitHub](http://ibm.github.io/) page.

## Contributing

For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-go-sdk/tree/v0.7.4/CONTRIBUTING.md).
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-go-sdk/tree/v0.7.5/CONTRIBUTING.md).

## License

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-go-sdk/tree/v0.7.4/LICENSE).
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-go-sdk/tree/v0.7.5/LICENSE).
2 changes: 1 addition & 1 deletion common/version.go
Expand Up @@ -17,4 +17,4 @@
package common

// Version of the SDK
const Version = "0.7.4"
const Version = "0.7.5"

0 comments on commit 44b48d8

Please sign in to comment.