From 2e19150afc32799286bd610b2639c61ea0c99490 Mon Sep 17 00:00:00 2001 From: Taylor Caldwell Date: Wed, 16 Jun 2021 12:42:17 -0700 Subject: [PATCH] Bump version to MINOR version 3.8.0 Change-Id: I99319c26e51bbbc3ab9afc1abba1ea5752d134ce --- CHANGELOG.md | 2 ++ package.json | 2 +- script/ci.sh | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb9c340..89b4ce8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [3.8.0] ### Added - Add continueTtsDuringTouch to Canvas, which is used to continue TTS output when a user interacts with a Canvas element. diff --git a/package.json b/package.json index 7ad5541..3746a25 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "Actions SDK Fulfillment Library for Node.js", "main": "dist/index.js", "types": "dist/index.d.ts", - "version": "3.7.1", + "version": "3.8.0", "license": "Apache-2.0", "author": "Google LLC", "engines": { diff --git a/script/ci.sh b/script/ci.sh index f12d73e..e5c99cb 100644 --- a/script/ci.sh +++ b/script/ci.sh @@ -68,8 +68,10 @@ cd ${GIT_PRESUBMIT_LINTER} git pull origin master cd ../ +set +e # Check that CHANGELOG.md was updated (unless explicitly turned off) git log -1 | grep "DISABLE_CHANGELOG_CHECK" +set -e DISABLE_CHANGELOG_CHECK=$? if [ $DISABLE_CHANGELOG_CHECK -ne 0 ]; then git diff HEAD~1 --name-only | ${RULES}/has-pattern.sh "CHANGELOG.md"