Skip to content

Commit d6ef29b

Browse files
committed
Release v0.11.0
1 parent 48004af commit d6ef29b

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased][unreleased]
66

7-
## [v0.10.1] - 2021-02-02
7+
## [v0.11.0] - 2022-05-24
88

9-
## Fixed
9+
### Changed
10+
11+
- Update the AWS generated modules to reflect v1.44.21 of Go SDK.
12+
This may cause breaking changes.
13+
- Change `aws_signature` requirement to `~> 0.3` in order to support newer versions.
14+
15+
## [v0.10.1] - 2022-02-02
16+
17+
### Fixed
1018

1119
- Update `AWS.Client` typespecs to accept `nil` for the `endpoint` field.
1220
- Isolate Hackney connection pool for requests. Now the pool is named `:aws_pool`.
@@ -472,7 +480,8 @@ is an example).
472480
- `AWS.StorageGateway` module for Storage Gateway Service
473481
- `AWS.Support` module for Support Service.
474482

475-
[unreleased]: https://github.com/aws-beam/aws-elixir/compare/v0.10.1...HEAD
483+
[unreleased]: https://github.com/aws-beam/aws-elixir/compare/v0.11.0...HEAD
484+
[v0.11.0]: https://github.com/aws-beam/aws-elixir/compare/v0.10.1...v0.11.0
476485
[v0.10.1]: https://github.com/aws-beam/aws-elixir/compare/v0.10.0...v0.10.1
477486
[v0.10.0]: https://github.com/aws-beam/aws-elixir/compare/v0.9.2...v0.10.0
478487
[v0.9.2]: https://github.com/aws-beam/aws-elixir/compare/v0.9.1...v0.9.2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ Optionally, you can implement your own (Check `AWS.Client` docs).
7575
```elixir
7676
def deps do
7777
[
78-
{:aws, "~> 0.10.0"},
79-
{:hackney, "~> 1.17"}
78+
{:aws, "~> 0.11.0"},
79+
{:hackney, "~> 1.18"}
8080
]
8181
end
8282
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule AWS.Mixfile do
22
use Mix.Project
33

4-
@version "0.10.1"
4+
@version "0.11.0"
55
@repo_url "https://github.com/aws-beam/aws-elixir"
66

77
def project do

0 commit comments

Comments
 (0)