Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatanklosko committed Sep 27, 2021
1 parent 484d050 commit 9dff1ba
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [v0.2.0](https://github.com/aws-beam/aws_signature/tree/v0.2.0) (2021-09-27)

### Changed

- Changed `sign_v4_query_params` signatures to also accept HTTP method ([#11](https://github.com/aws-beam/aws_signature/pull/11))

## [v0.1.1](https://github.com/aws-beam/aws_signature/tree/v0.1.1) (2021-08-28)

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ To install, just add it to your dependencies in `mix.exs`:
```elixir
defp deps() do
[
{:aws_signature, "~> 0.1.1"}
{:aws_signature, "~> 0.2.0"}
]
end
```

or `rebar.config`:

```erlang
{deps, [{aws_signature, "~> 0.1.1"}]}.
{deps, [{aws_signature, "~> 0.2.0"}]}.
```
2 changes: 1 addition & 1 deletion docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -e

rebar3 compile
rebar3 as docs edoc
version=0.1.1
version=0.2.0
ex_doc "aws_signature" $version "_build/default/lib/aws_signature/ebin" \
--source-ref v${version} \
--config docs.config
2 changes: 1 addition & 1 deletion src/aws_signature.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, aws_signature,
[{description, "Request signature implementation for authorizing AWS API calls"},
{vsn, "0.1.1"},
{vsn, "0.2.0"},
{registered, []},
{applications,
[kernel,
Expand Down

0 comments on commit 9dff1ba

Please sign in to comment.