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

Commit 536aca3

Browse files
committed
Bump version to PATCH version 3.7.1
Change-Id: I862d2bcb34598a647655c5aaf13edc916c216a4b
1 parent 0bc0a96 commit 536aca3

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.7.1]
10+
### Changed
11+
- Fixed linting errors
12+
913
## [3.7.0]
1014
### Added
1115
- Add enableFullScreen to Canvas, allowing the canvas application to occupy the full screen, and not have a header at the top.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Actions SDK Fulfillment Library for Node.js",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
6-
"version": "3.7.0",
6+
"version": "3.7.1",
77
"license": "Apache-2.0",
88
"author": "Google LLC",
99
"engines": {

src/conversation/conv.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export class ConversationV3 {
183183
* let color = conv.session.params.exampleColor;
184184
* });
185185
* ```
186-
*
186+
*
187187
* @see {@link https://developers.google.com/assistant/conversational/storage-session | Session Storage documentation}
188188
* @public
189189
*/
@@ -199,7 +199,7 @@ export class ConversationV3 {
199199
* let color = 'red';
200200
* conv.user.params.exampleColor = color;
201201
* });
202-
*
202+
*
203203
* // Retrieve color from user storage
204204
* app.handle('getStoredColor', conv => {
205205
* let color = conv.user.params.exampleColor;
@@ -228,7 +228,7 @@ export class ConversationV3 {
228228
* let color = 'red';
229229
* conv.home.params.exampleColor = color;
230230
* });
231-
*
231+
*
232232
* // Retrieve color from home storage
233233
* app.handle('getStoredColor', conv => {
234234
* let color = conv.home.params.exampleColor;

tslint.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,10 @@
132132
"no-console": true,
133133
"max-line-length": [
134134
true,
135-
100
135+
{
136+
"limit": 100,
137+
"ignore-pattern": "\\* @see"
138+
}
136139
],
137140
"eofline": true
138141
}

0 commit comments

Comments
 (0)