diff --git a/package.json b/package.json index c0759f88e3..3f6331ff5f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "feathers", "description": "An ultra scalable, feather weight, data oriented framework", - "version": "0.0.4", + "version": "0.0.5", "homepage": "https://feathersjs.com", "repository": { "type": "git", diff --git a/readme.md b/readme.md index 787c68296d..efc9921a2d 100644 --- a/readme.md +++ b/readme.md @@ -16,7 +16,7 @@ As with any NodeJS module, just install it as a dependency in your application: ## Getting Started Is Easy -Like we said, services are just simple modules that expose certain methods to the providers. This makes it easy to initialize a service that say... provides a single TODO: +Building an app with Feathers is easy. There are only 4 things to worry about. A wrapped express server, providers, services & middleware. Services are just simple modules that expose certain methods to the providers in order to CRUD your data. We can easily initialize a service that say... provides a single TODO: ```js var feathers = require('feathers');