From 80a1b6fe723df8652efbd438a39673ce7f67670e Mon Sep 17 00:00:00 2001 From: dblock Date: Mon, 6 Feb 2017 06:26:12 -0500 Subject: [PATCH] Preparing for release, 3.0.0. --- CHANGELOG.md | 3 +-- README.md | 2 +- RELEASING.md | 2 +- package.json | 2 +- test/test_alexa_integration_express.js | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e0108a..ad885e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## Changelog -### 2.5.0 (Next) +### 3.0.0 (February 6, 2017) * [#152](https://github.com/alexa-js/alexa-app/issues/152): Mounted a JSON body-parser after verifier middleware and removed `bodyParser.urlencoded` in Express integration - [@dblock](https://github.com/dblock). * [#150](https://github.com/alexa-js/alexa-app/pull/150): Added `preRequest` and `postRequest` to express integration - [@dblock](https://github.com/dblock). @@ -13,7 +13,6 @@ * [#118](https://github.com/matt-kruse/alexa-app/pull/118), [#117](https://github.com/matt-kruse/alexa-app/issues/117): Prevent updating session attributes directly - [@ajcrites](https://github.com/ajcrites). * [#133](https://github.com/matt-kruse/alexa-app/pull/133), [#71](https://github.com/matt-kruse/alexa-app/issues/71): Support asynchronous patterns in request handlers - [@ajcrites](https://github.com/ajcrites). * [#159](https://github.com/alexa-js/alexa-app/pull/159), [#157](https://github.com/alexa-js/alexa-app/issues/157): Fixed `SessionEndedRequest` hangs without a defined `sessionEndedFunc` - [@dblock](https://github.com/dblock). -* Your contribution here. ### 2.4.0 (January 5, 2017) diff --git a/README.md b/README.md index 97ad543..78c1f1f 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Node.js 0.12 or later is required. # Stable Release -You're reading the documentation for the next release of alexa-app, which should be 2.4.1. Please see [CHANGELOG](CHANGELOG.md) and make sure to read [UPGRADING](UPGRADING.md) when upgrading from a previous version. The current stable release is [2.4.0](https://github.com/alexa-js/alexa-app/blob/v2.4.0/README.md). +You're reading the documentation for the stable release of alexa-app, 3.0.0. Please see [CHANGELOG](CHANGELOG.md) and make sure to read [UPGRADING](UPGRADING.md) when upgrading from a previous version. # Summary diff --git a/RELEASING.md b/RELEASING.md index f653d09..001a112 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -54,7 +54,7 @@ git tag v2.4.0 Release. ``` -$ npm release +$ npm publish ``` Push. diff --git a/package.json b/package.json index 256baf2..52c0ed3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "alexa-app", - "version": "2.5.0", + "version": "3.0.0", "description": "A module to simplify creation of Alexa (Amazon Echo) apps (Skills) using Node.js", "main": "index.js", "author": "Matt Kruse (http://mattkruse.com)", diff --git a/test/test_alexa_integration_express.js b/test/test_alexa_integration_express.js index 344a466..d606228 100644 --- a/test/test_alexa_integration_express.js +++ b/test/test_alexa_integration_express.js @@ -12,7 +12,7 @@ chai.config.includeStack = true; var mockHelper = require("./helpers/mock_helper"); var sinon = require("sinon"); var express = require('express'); -var request = require("supertest-as-promised"); +var request = require("supertest"); var bodyParser = require('body-parser'); var path = require('path');