diff --git a/CHANGES.md b/CHANGES.md index 320cbc2..03529e1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +## v0.3.21 + +* `after` had been left off of the public API of router, added it + ## v0.3.20 * Simplified and corrected code for `pipe` method on the request object for the `Parted` middleware. diff --git a/lib/bogart.js b/lib/bogart.js index 6fce80d..a9387ef 100644 --- a/lib/bogart.js +++ b/lib/bogart.js @@ -9,7 +9,7 @@ var fs = require('fs'), view = require('./view'); -exports.version = [0,3,20]; +exports.version = [0,3,21]; exports.middleware = middleware; diff --git a/package.json b/package.json index e755d7b..86a2a22 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "bogart", "description": "Fast JSGI web framework taking inspiration from Sinatra", - "version": "0.3.20", + "version": "0.3.21", "keywords": ["bogart", "framework", "sinatra", "REST"], "author": "Nathan Stott", "email": "nathan.stott@whiteboard-it.com",