Skip to content

Commit

Permalink
Merge pull request #24 from aws-beam/add-release-train-to-hex
Browse files Browse the repository at this point in the history
Add release train to hex.pm
  • Loading branch information
onno-vos-dev authored Feb 16, 2024
2 parents 16b2b29 + 86eae3f commit 574e0fa
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,15 @@ jobs:
- name: Run EUnit Tests
run: rebar3 eunit

- name: Generate docs
run: rebar3 ex_doc

- uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
token: ${{ secrets.GITHUB_TOKEN }}

- name: Publish to hex.pm
env:
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
run: rebar3 hex publish -r hexpm --yes
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ 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.3.2](https://github.com/aws-beam/aws_signature/tree/v0.3.2) (2024-02-16)

### Added

- Add support for signing AWS event stream messages ([#23](https://github.com/aws-beam/aws_signature/pull/23))
- Add body_digest option to sign_v4/10 ([#25](https://github.com/aws-beam/aws_signature/pull/25))

## [v0.3.1](https://github.com/aws-beam/aws_signature/tree/v0.3.1) (2022-04-27)

### Fixed
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.3.1"}
{:aws_signature, "~> 0.3.2"}
]
end
```

or `rebar.config`:

```erlang
{deps, [{aws_signature, "~> 0.3.1"}]}.
{deps, [{aws_signature, "~> 0.3.2"}]}.
```
3 changes: 1 addition & 2 deletions src/aws_signature.app.src
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{application, aws_signature,
[{description, "Request signature implementation for authorizing AWS API calls"},
{vsn, "0.3.1"},
{vsn, "git"},
{registered, []},
{applications,
[kernel,
stdlib
]},
{env,[]},
{modules, []},

{licenses, ["Apache-2.0"]},
{links, [{"GitHub", "https://github.com/aws-beam/aws_signature"}]},
{doc, "doc"}
Expand Down

0 comments on commit 574e0fa

Please sign in to comment.