diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..67aad05 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +# Change Log +All notable changes to this project will be documented in this file. +This project adheres to [Semantic Versioning](http://semver.org/). + +## 1.0.0 - 2015-12-19 + +Initial Release. diff --git a/package.json b/package.json index 76e6f3d..afb21c1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "body-parser-xml", - "version": "1.0.0-alpha1", - "description": "Adds an XML parser to body-parser.", + "version": "1.0.0", + "description": "XML parser middleware for express.js.", "main": "index.js", "scripts": { "test": "node_modules/mocha/bin/mocha test.js" @@ -13,6 +13,7 @@ "keywords": [ "express", "xml", + "middleware", "body-parser" ], "author": "Tom Spencer ", @@ -29,5 +30,8 @@ "express": "^4.13.3", "mocha": "^2.3.4", "supertest": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" } }