Skip to content

Commit

Permalink
Preparing for release, 3.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
dblock committed Feb 6, 2017
1 parent c0263f2 commit 80a1b6f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand All @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ git tag v2.4.0
Release.

```
$ npm release
$ npm publish
```

Push.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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)",
Expand Down
2 changes: 1 addition & 1 deletion test/test_alexa_integration_express.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down

0 comments on commit 80a1b6f

Please sign in to comment.