File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 33All notable changes to this project will be documented in this file.
44
55## [ Unreleased] [ unreleased ]
6+
7+ ## [ v0.0.8] [ v0.0.8 ]
68### Added
79- ` AWS.GameLift ` module for AWS GameLift service.
810- ` AWS.MCA ` module for AWS Marketplace Commerce Analytics service.
911- ` AWS.WAF ` module for AWS Web Application Firewall service.
12+ - Experimental/unstable support for generating v4 signatures that can be
13+ embedded in query strings is taking shape in ` AWS.Request.sign_v4_query ` .
14+
15+ ## Changed
16+ - Requests that error now return ` {:error, {exception, message}} ` 2-tuples
17+ instead of the ` {:error, exception} ` 2-tuples that were returned before.
18+
1019
1120## [ v0.0.7] - 2016-01-13
1221### Fixed
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ iex> IO.inspect result
3030
3131 ``` elixir
3232 def deps do
33- [{:aws , " ~> 0.0.7 " }]
33+ [{:aws , " ~> 0.0.8 " }]
3434 end
3535 ```
3636
Original file line number Diff line number Diff line change @@ -41,14 +41,14 @@ defmodule AWS.Mixfile do
4141 end
4242
4343 defp version do
44- "0.0.7 "
44+ "0.0.8 "
4545 end
4646
4747 defp package do
4848 [ maintainers: [ "Jamu Kakar" ] ,
4949 licenses: [ "Apache 2.0" ] ,
5050 links: % { "GitHub" => "https://github.com/jkakar/aws-elixir" ,
5151 "Docs" => "http://hexdocs.pm/aws/#{ version } /" ,
52- "Change Log " => "https://github.com/jkakar/aws-elixir/blob/master/CHANGELOG.md" } ]
52+ "Changelog " => "https://github.com/jkakar/aws-elixir/blob/master/CHANGELOG.md" } ]
5353 end
5454end
You can’t perform that action at this time.
0 commit comments