Permalink
Browse files

Preparing for release, 3.0.0.

  • Loading branch information...
1 parent c0263f2 commit 80a1b6fe723df8652efbd438a39673ce7f67670e @dblock dblock committed Feb 6, 2017
Showing with 5 additions and 6 deletions.
  1. +1 −2 CHANGELOG.md
  2. +1 −1 README.md
  3. +1 −1 RELEASING.md
  4. +1 −1 package.json
  5. +1 −1 test/test_alexa_integration_express.js
View
@@ -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)
View
@@ -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
View
@@ -54,7 +54,7 @@ git tag v2.4.0
Release.
```
-$ npm release
+$ npm publish
```
Push.
View
@@ -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 <github@mattkruse.com> (http://mattkruse.com)",
@@ -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');

0 comments on commit 80a1b6f

Please sign in to comment.