diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..1dcb8be11 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,16 @@ +on: + push: + tags: + - '*' + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@v2 + + - name: Publish to Hex.pm + uses: erlangpack/github-action@v1 + env: + HEX_API_KEY: ${{ secrets.HEX_API_KEY }} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e7a4ef2b..ab950cbfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## v2.1.2 +### Enhancement +* Documentation improvements +* Parse the kid from the signing secret to the signature [#654](https://github.com/ueberauth/guardian/pull/654) + +### Bugfix +* Fixed issue with remember_me plug not using the correct ttl [#649](https://github.com/ueberauth/guardian/pull/649) +* Fixed failing compilation if plug was not included as a dep [#633](https://github.com/ueberauth/guardian/pull/663) + +*Thanks goes to all contributors* + + +## v2.1.1 +### Enhancement +* Documentation improvements + ## v2.1.0 ### Enhancement