Skip to content

Commit 103292d

Browse files
committed
Bump version for v0.0.8.
1 parent 80a6c23 commit 103292d

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,19 @@
33
All 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
5454
end

0 commit comments

Comments
 (0)