Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
Bump version to MINOR version 3.8.0
Browse files Browse the repository at this point in the history
Change-Id: I99319c26e51bbbc3ab9afc1abba1ea5752d134ce
  • Loading branch information
taycaldwell authored and Fleker committed Jun 17, 2021
1 parent df8731a commit 2e19150
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 2 additions & 0 deletions script/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 2e19150

Please sign in to comment.