From faba18001936741534ae5db9de0fa8f31a463925 Mon Sep 17 00:00:00 2001 From: Drew Baugher <46505179+dbbaughe@users.noreply.github.com> Date: Fri, 7 Feb 2020 16:10:39 -0800 Subject: [PATCH] Updates release notes (#37) * Updates release notes * Adds multiple os to github workflow * Changes runs-on to macos-latest * updates comment --- .github/workflows/test-and-build-workflow.yml | 4 ++-- opendistro-elasticsearch-job-scheduler.release-notes | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-and-build-workflow.yml b/.github/workflows/test-and-build-workflow.yml index 399d3c5..8953d87 100644 --- a/.github/workflows/test-and-build-workflow.yml +++ b/.github/workflows/test-and-build-workflow.yml @@ -13,8 +13,8 @@ jobs: java: [12] # Job name name: Build Job Scheduler with JDK ${{ matrix.java }} - # This job runs on Linux - runs-on: ubuntu-latest + # This job runs on MacOS + runs-on: macos-latest steps: # This step uses the checkout Github action: https://github.com/actions/checkout - name: Checkout Branch diff --git a/opendistro-elasticsearch-job-scheduler.release-notes b/opendistro-elasticsearch-job-scheduler.release-notes index e3c86da..00989cc 100644 --- a/opendistro-elasticsearch-job-scheduler.release-notes +++ b/opendistro-elasticsearch-job-scheduler.release-notes @@ -1,4 +1,10 @@ -## version 1.3.0.0 (Current) +## version 1.4.0.0 (Current) + +### Notable Changes +* Feature [PR #31](https://github.com/opendistro-for-elasticsearch/job-scheduler/pull/31) Support ES version 7.4.2 +* Feature [PR #30](https://github.com/opendistro-for-elasticsearch/job-scheduler/pull/30) Adds build and test github workflows to automate testing of each PR + +## 2019-11-20, version 1.3.0.0 ### Breaking Changes * Converts LockService to asynchronous pattern to not block threadpool, this requires an update to usage as API changed.