Skip to content

Commit a0d773b

Browse files
committed
chore(release): publish v2.5.1
1 parent 31ce953 commit a0d773b

File tree

12 files changed

+65
-11
lines changed

12 files changed

+65
-11
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.1](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.5.0...v2.5.1) (2019-03-08)
7+
8+
9+
### Bug Fixes
10+
11+
* remove response factory auto escape xml character behavior. ([31ce953](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/commit/31ce953))
12+
13+
14+
15+
16+
617
# [2.5.0](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.4.0...v2.5.0) (2019-03-07)
718

819

ask-sdk-core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.1](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.5.0...v2.5.1) (2019-03-08)
7+
8+
9+
### Bug Fixes
10+
11+
* remove response factory auto escape xml character behavior. ([31ce953](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/commit/31ce953))
12+
13+
14+
15+
16+
617
# [2.5.0](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.4.0...v2.5.0) (2019-03-07)
718

819

ask-sdk-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ask-sdk-core",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "Core package for Alexa Skills Kit SDK",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

ask-sdk-dynamodb-persistence-adapter/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.1](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.5.0...v2.5.1) (2019-03-08)
7+
8+
**Note:** Version bump only for package ask-sdk-dynamodb-persistence-adapter
9+
10+
11+
12+
13+
614
# [2.5.0](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.4.0...v2.5.0) (2019-03-07)
715

816
**Note:** Version bump only for package ask-sdk-dynamodb-persistence-adapter

ask-sdk-dynamodb-persistence-adapter/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ask-sdk-dynamodb-persistence-adapter",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "DynamoDB based implementation package of PersistenceAdapter interface in ASK SDK v2 for Node.js",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -33,7 +33,7 @@
3333
"@types/chai": "^4.1.2",
3434
"@types/mocha": "^5.0.0",
3535
"@types/node": "^9.6.1",
36-
"ask-sdk-core": "^2.5.0",
36+
"ask-sdk-core": "^2.5.1",
3737
"ask-sdk-model": "^1.0.0",
3838
"aws-sdk-mock": "^4.1.0",
3939
"chai": "^4.1.2",

ask-sdk-s3-persistence-adapter/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.1](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.5.0...v2.5.1) (2019-03-08)
7+
8+
**Note:** Version bump only for package ask-sdk-s3-persistence-adapter
9+
10+
11+
12+
13+
614
# [2.5.0](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.4.0...v2.5.0) (2019-03-07)
715

816
**Note:** Version bump only for package ask-sdk-s3-persistence-adapter

ask-sdk-s3-persistence-adapter/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ask-sdk-s3-persistence-adapter",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "S3 based implementation package of PersistenceAdapter interface in ASK SDK v2 for Node.js",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -29,7 +29,7 @@
2929
"@types/chai": "^4.1.2",
3030
"@types/mocha": "^5.0.0",
3131
"@types/node": "^9.6.1",
32-
"ask-sdk-core": "^2.5.0",
32+
"ask-sdk-core": "^2.5.1",
3333
"ask-sdk-model": "^1.0.0",
3434
"aws-sdk-mock": "^4.1.0",
3535
"chai": "^4.1.2",

ask-sdk-v1adapter/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.1](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.5.0...v2.5.1) (2019-03-08)
7+
8+
**Note:** Version bump only for package ask-sdk-v1adapter
9+
10+
11+
12+
13+
614
# [2.5.0](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.4.0...v2.5.0) (2019-03-07)
715

816
**Note:** Version bump only for package ask-sdk-v1adapter

ask-sdk-v1adapter/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ask-sdk-v1adapter",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "Adapter from v1 Alexa Node.js SDK to v2",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -36,7 +36,7 @@
3636
"@types/mocha": "^5.0.0",
3737
"@types/node": "^9.6.1",
3838
"@types/sinon": "^4.3.0",
39-
"ask-sdk": "^2.5.0",
39+
"ask-sdk": "^2.5.1",
4040
"chai": "^4.1.2",
4141
"del": "^3.0.0",
4242
"gulp": "^4.0.0",

ask-sdk/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.5.1](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.5.0...v2.5.1) (2019-03-08)
7+
8+
**Note:** Version bump only for package ask-sdk
9+
10+
11+
12+
13+
614
# [2.5.0](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.4.0...v2.5.0) (2019-03-07)
715

816

0 commit comments

Comments
 (0)