Skip to content

Commit

Permalink
Bump verison to v.2.5.5; update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardd committed Sep 10, 2024
1 parent 4530249 commit 821722c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v2.5.5 (2024-09-10)
- Endpoint updates
- Drop support for Elixir 1.12
- Add support for Elixir 1.17
- Add Req request backend
- Stop sending `content-length` header for DELETE and HEAD requests
- Fix handling of `[profile <name>]` blocks in config file
- Update test platform to Ubuntu 24.04

v2.5.4 (2024-06-04)
- Endpoint and region updates
- Add support for Elixir 1.16
Expand Down
7 changes: 3 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ defmodule ExAws.Mixfile do
use Mix.Project

@source_url "https://github.com/ex-aws/ex_aws"
@version "2.5.4"
@version "2.5.5"

def project do
[
app: :ex_aws,
version: @version,
elixir: "~> 1.12",
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
description: "Generic AWS client",
name: "ExAws",
Expand Down Expand Up @@ -39,7 +39,6 @@ defmodule ExAws.Mixfile do
defp deps() do
[
{:telemetry, "~> 0.4.3 or ~> 1.0"},
# mime 2.x requires Elixir ~> 1.10
{:mime, "~> 1.2 or ~> 2.0"},
{:bypass, "~> 2.1", only: :test},
{:configparser_ex, "~> 4.0", optional: true},
Expand Down Expand Up @@ -72,7 +71,7 @@ defmodule ExAws.Mixfile do
defp description do
"""
AWS client for Elixir. Currently supports Dynamo, DynamoStreams, EC2,
Firehose, Kinesis, KMS, Lambda, RRDS, Route53, S3, SES, SNS, SQS, STS
Firehose, Kinesis, KMS, Lambda, RRDS, Route53, S3, SES, SNS, SQS, STS and others.
"""
end

Expand Down

0 comments on commit 821722c

Please sign in to comment.