Skip to content

Commit

Permalink
version and changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
handnot2 committed Aug 7, 2017
1 parent d2a2f4c commit e2ba197
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Changelog

### v0.7.0

Fixes:

- Removed Mix.env reference that caused problems with distillery based releases.
PR from [zeroasterisk](https://github.com/zeroasterisk) (issue #8)

### v0.6.0

Fixes:
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ in `mix.exs`:

```elixir
def deps do
[{:sigaws, "~> 0.6"}]
[{:sigaws, "~> 0.7"}]
end
```

Expand Down Expand Up @@ -55,6 +55,9 @@ headers = %{"X-Amz-Secure-Token" => System.get_env("AWS_SESSION_TOKEN")}
{:ok, resp} = HTTPoison.get(url, Map.merge(headers, sig_data))
```

> Make sure to merge `sig_data` with other headers before calling HTTPoison.
> If not done, the HTTP request will fail with signature verification error.
### Signature to be passed in query string ("presigned" URL)

```elixir
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Sigaws.Mixfile do
use Mix.Project

@version "0.6.0"
@version "0.7.0"
@description """
An Elixir library to sign and verify HTTP requests using AWS Signature V4.
"""
Expand Down

0 comments on commit e2ba197

Please sign in to comment.