diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 0000000..b3e2b94 --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,25 @@ +categories: + - title: ':rocket: Features' + labels: + - 'enhancement' + - title: ':bug: Bug Fixes' + labels: + - 'bug' + - title: ':dart: Dependencies' + labels: + - 'dependency' + +template: | + # :mega: Lagom Elasticsearch Client X.Y.Z released! + + We are pleased to announce the release of Elasticsearch Client for [Lagom](https://www.lagomframework.com/) framework. + + ## :green_book: What’s Changed + + All the changes you can see on the corresponding page of [GitHub Milestone](https://github.com/taymyr/lagom-elasticsearch-client/milestone/7?closed=1) + + $CHANGES + + ## :bow: Credits + + Special thanks to the following contributors who helped with this release: $CONTRIBUTORS \ No newline at end of file diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000..441b410 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,16 @@ +name: Release Drafter + +on: + push: + # branches to consider in the event; optional, defaults to all + branches: + - master + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + # Drafts your next Release notes as Pull Requests are merged into "master" + - uses: release-drafter/release-drafter@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 0ede17c..b0fc1ab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,8 +6,8 @@ if: type != push OR tag IS present OR fork OR branch = master env: - SCALA_VERSION=2.11 LAGOM_VERSION=1.4.15 - - SCALA_VERSION=2.12 LAGOM_VERSION=1.5.4 - - SCALA_VERSION=2.13 LAGOM_VERSION=1.6.0-RC1 + - SCALA_VERSION=2.12 LAGOM_VERSION=1.5.5 + - SCALA_VERSION=2.13 LAGOM_VERSION=1.6.2 jdk: - openjdk8