Skip to content

Commit

Permalink
Bump version and update CHANGELOG (v2.5.7)
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardd committed Oct 31, 2024
1 parent 50af1b8 commit 44c9aec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v2.5.7 (2024-10-31)
- Endpoint updates
- Configurable max attempts for client-specific errors (4xx) using `max_attempts_client` in `retries` config
- Fix `follow_redirect` option handling for `req` client

v2.5.6 (2024-10-09)
- Endpoint updates

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ config :ex_aws, :retries,
```

* `max_attempts` is the maximum number of possible attempts with backoffs in between each one
* `max_attempts_client` may be set to a different value for client errors (4xx) (default is `max_attempts`)
* `base_backoff_in_ms` corresponds to the `base` value described in the blog post
* `max_backoff_in_ms` corresponds to the `cap` value described in the blog post

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule ExAws.Mixfile do
use Mix.Project

@source_url "https://github.com/ex-aws/ex_aws"
@version "2.5.6"
@version "2.5.7"

def project do
[
Expand Down

1 comment on commit 44c9aec

@adamu
Copy link

@adamu adamu commented on 44c9aec Nov 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like the hex package also contains a spurious README.md~ file and a few others.

https://preview.hex.pm/preview/ex_aws/2.5.7/show/README.md~

Please sign in to comment.