diff --git a/CHANGELOG.md b/CHANGELOG.md index f9bd0bbb..d98dc108 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [2.0.7](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.0.6...v2.0.7) (2018-06-22) + + +### Bug Fixes + +* update attributes persistence behavior of ask-sdk-v1adapter ([51432df](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/commit/51432df)), closes [#414](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/issues/414) + + + + ## [2.0.6](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.0.5...v2.0.6) (2018-06-12) diff --git a/ask-sdk-core/CHANGELOG.md b/ask-sdk-core/CHANGELOG.md index 1a0f4dbd..0d9223a4 100644 --- a/ask-sdk-core/CHANGELOG.md +++ b/ask-sdk-core/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [2.0.7](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.0.6...v2.0.7) (2018-06-22) + + +### Bug Fixes + +* update attributes persistence behavior of ask-sdk-v1adapter ([51432df](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/commit/51432df)), closes [#414](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/issues/414) + + + + ## [2.0.5](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.0.4...v2.0.5) (2018-05-16) diff --git a/ask-sdk-core/package.json b/ask-sdk-core/package.json index 5fd4c949..81039128 100644 --- a/ask-sdk-core/package.json +++ b/ask-sdk-core/package.json @@ -1,6 +1,6 @@ { "name": "ask-sdk-core", - "version": "2.0.5", + "version": "2.0.7", "description": "Core package for Alexa Skills Kit SDK", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/ask-sdk-dynamodb-persistence-adapter/CHANGELOG.md b/ask-sdk-dynamodb-persistence-adapter/CHANGELOG.md index a7f41790..fae1c0ef 100644 --- a/ask-sdk-dynamodb-persistence-adapter/CHANGELOG.md +++ b/ask-sdk-dynamodb-persistence-adapter/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [2.0.7](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.0.6...v2.0.7) (2018-06-22) + + +### Bug Fixes + +* update attributes persistence behavior of ask-sdk-v1adapter ([51432df](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/commit/51432df)), closes [#414](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/issues/414) + + + + ## [2.0.6](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.0.5...v2.0.6) (2018-06-12) diff --git a/ask-sdk-dynamodb-persistence-adapter/package.json b/ask-sdk-dynamodb-persistence-adapter/package.json index 1e48c7ff..9e979b79 100644 --- a/ask-sdk-dynamodb-persistence-adapter/package.json +++ b/ask-sdk-dynamodb-persistence-adapter/package.json @@ -1,6 +1,6 @@ { "name": "ask-sdk-dynamodb-persistence-adapter", - "version": "2.0.6", + "version": "2.0.7", "description": "DynamoDB based implementation package of PersistenceAdapter interface in ASK SDK v2 for Node.js", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -33,7 +33,7 @@ "@types/chai": "^4.1.2", "@types/mocha": "^5.0.0", "@types/node": "^9.6.1", - "ask-sdk-core": "^2.0.5", + "ask-sdk-core": "^2.0.7", "ask-sdk-model": "^1.0.0", "aws-sdk-mock": "^1.7.0", "chai": "^4.1.2", diff --git a/ask-sdk-v1adapter/CHANGELOG.md b/ask-sdk-v1adapter/CHANGELOG.md index 585e2302..1ac79bdf 100644 --- a/ask-sdk-v1adapter/CHANGELOG.md +++ b/ask-sdk-v1adapter/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [2.0.7](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.0.6...v2.0.7) (2018-06-22) + + +### Bug Fixes + +* update attributes persistence behavior of ask-sdk-v1adapter ([51432df](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/commit/51432df)), closes [#414](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/issues/414) + + + + ## [2.0.6](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.0.5...v2.0.6) (2018-06-12) diff --git a/ask-sdk-v1adapter/package.json b/ask-sdk-v1adapter/package.json index 42bec63e..0b91dadb 100644 --- a/ask-sdk-v1adapter/package.json +++ b/ask-sdk-v1adapter/package.json @@ -1,6 +1,6 @@ { "name": "ask-sdk-v1adapter", - "version": "2.0.6", + "version": "2.0.7", "description": "Adapter from v1 Alexa Node.js SDK to v2", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -36,7 +36,7 @@ "@types/mocha": "^5.0.0", "@types/node": "^9.6.1", "@types/sinon": "^4.3.0", - "ask-sdk": "^2.0.6", + "ask-sdk": "^2.0.7", "chai": "^4.1.2", "del": "^3.0.0", "gulp": "^4.0.0", diff --git a/ask-sdk/CHANGELOG.md b/ask-sdk/CHANGELOG.md index b1e5cdb1..b06395b3 100644 --- a/ask-sdk/CHANGELOG.md +++ b/ask-sdk/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [2.0.7](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.0.6...v2.0.7) (2018-06-22) + + +### Bug Fixes + +* update attributes persistence behavior of ask-sdk-v1adapter ([51432df](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/commit/51432df)), closes [#414](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/issues/414) + + + + ## [2.0.6](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/compare/v2.0.5...v2.0.6) (2018-06-12) diff --git a/ask-sdk/package.json b/ask-sdk/package.json index 69af39ac..afc96364 100644 --- a/ask-sdk/package.json +++ b/ask-sdk/package.json @@ -1,6 +1,6 @@ { "name": "ask-sdk", - "version": "2.0.6", + "version": "2.0.7", "description": "Standard distribution package for Alexa Skills Kit SDK", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -24,8 +24,8 @@ "SDK" ], "dependencies": { - "ask-sdk-core": "^2.0.5", - "ask-sdk-dynamodb-persistence-adapter": "^2.0.6", + "ask-sdk-core": "^2.0.7", + "ask-sdk-dynamodb-persistence-adapter": "^2.0.7", "ask-sdk-model": "^1.0.0" }, "devDependencies": { diff --git a/lerna.json b/lerna.json index 78d4fd1f..16e4347a 100644 --- a/lerna.json +++ b/lerna.json @@ -6,5 +6,5 @@ "ask-sdk-dynamodb-persistence-adapter", "ask-sdk-v1adapter" ], - "version": "2.0.6" + "version": "2.0.7" }