Skip to content

Commit a5a6993

Browse files
committed
Release v0.10.0
1 parent bd2109d commit a5a6993

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased][unreleased]
66

7+
## [v0.10.0] - 2021-12-03
8+
9+
### Fixed
10+
11+
- Don't display access key or secret key when inspecting `AWS.Client`.
12+
- Add the `region` to `AWS.Client.t`
13+
14+
### Changed
15+
16+
- Update the APIs to the version 1.42.18 of Go SDK. There is a breaking
17+
change: `AWS.API.Pricing` changed to `AWS.Pricing`. Several modules were
18+
added.
19+
- Require Elixir ~> 1.10
20+
721
## [v0.9.2] - 2021-10-27
822

923
### Fixed
@@ -450,7 +464,8 @@ is an example).
450464
- `AWS.StorageGateway` module for Storage Gateway Service
451465
- `AWS.Support` module for Support Service.
452466

453-
[unreleased]: https://github.com/aws-beam/aws-elixir/compare/v0.9.2...HEAD
467+
[unreleased]: https://github.com/aws-beam/aws-elixir/compare/v0.10.0...HEAD
468+
[v0.10.0]: https://github.com/aws-beam/aws-elixir/compare/v0.9.2...v0.10.0
454469
[v0.9.2]: https://github.com/aws-beam/aws-elixir/compare/v0.9.1...v0.9.2
455470
[v0.9.1]: https://github.com/aws-beam/aws-elixir/compare/v0.9.0...v0.9.1
456471
[v0.9.0]: https://github.com/aws-beam/aws-elixir/compare/v0.8.0...v0.9.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Optionally, you can implement your own (Check `AWS.Client` docs).
7575
```elixir
7676
def deps do
7777
[
78-
{:aws, "~> 0.9.0"},
78+
{:aws, "~> 0.10.0"},
7979
{:hackney, "~> 1.17"}
8080
]
8181
end

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.9.2"
4+
@version "0.10.0"
55
@repo_url "https://github.com/aws-beam/aws-elixir"
66
@auto_generated_files_dir "lib/aws/generated"
77

0 commit comments

Comments
 (0)