Skip to content

Commit 574e0fa

Browse files
authored
Merge pull request #24 from aws-beam/add-release-train-to-hex
Add release train to hex.pm
2 parents 16b2b29 + 86eae3f commit 574e0fa

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

.github/workflows/release.yml

+8
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,15 @@ jobs:
2323
- name: Run EUnit Tests
2424
run: rebar3 eunit
2525

26+
- name: Generate docs
27+
run: rebar3 ex_doc
28+
2629
- uses: ncipollo/release-action@v1
2730
with:
2831
generateReleaseNotes: true
2932
token: ${{ secrets.GITHUB_TOKEN }}
33+
34+
- name: Publish to hex.pm
35+
env:
36+
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
37+
run: rebar3 hex publish -r hexpm --yes

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

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

7+
## [v0.3.2](https://github.com/aws-beam/aws_signature/tree/v0.3.2) (2024-02-16)
8+
9+
### Added
10+
11+
- Add support for signing AWS event stream messages ([#23](https://github.com/aws-beam/aws_signature/pull/23))
12+
- Add body_digest option to sign_v4/10 ([#25](https://github.com/aws-beam/aws_signature/pull/25))
13+
714
## [v0.3.1](https://github.com/aws-beam/aws_signature/tree/v0.3.1) (2022-04-27)
815

916
### Fixed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ To install, just add it to your dependencies in `mix.exs`:
1212
```elixir
1313
defp deps() do
1414
[
15-
{:aws_signature, "~> 0.3.1"}
15+
{:aws_signature, "~> 0.3.2"}
1616
]
1717
end
1818
```
1919

2020
or `rebar.config`:
2121

2222
```erlang
23-
{deps, [{aws_signature, "~> 0.3.1"}]}.
23+
{deps, [{aws_signature, "~> 0.3.2"}]}.
2424
```

src/aws_signature.app.src

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{application, aws_signature,
22
[{description, "Request signature implementation for authorizing AWS API calls"},
3-
{vsn, "0.3.1"},
3+
{vsn, "git"},
44
{registered, []},
55
{applications,
66
[kernel,
77
stdlib
88
]},
99
{env,[]},
1010
{modules, []},
11-
1211
{licenses, ["Apache-2.0"]},
1312
{links, [{"GitHub", "https://github.com/aws-beam/aws_signature"}]},
1413
{doc, "doc"}

0 commit comments

Comments
 (0)