From d7299ee7b0efad5f051622822e1c04518c0eea7f Mon Sep 17 00:00:00 2001 From: skratchdot Date: Sat, 27 Aug 2016 09:29:02 -0400 Subject: [PATCH] adding changelog and bumping version --- CHANGELOG.md | 23 +++++++++++++++++++++++ README.md | 5 +++++ package.json | 3 ++- 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..181a061 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,23 @@ +# Change Log + +## [1.0.0](https://github.com/skratchdot/object-path-get/tree/1.0.0) (2016-08-27) +[Full Changelog](https://github.com/skratchdot/object-path-get/compare/0.0.3...1.0.0) + +**Closed issues:** + +- Add support to path in array format [\#1](https://github.com/skratchdot/object-path-get/issues/1) + +**Merged pull requests:** + +- Add support for array paths \(Fix \#1\) [\#2](https://github.com/skratchdot/object-path-get/pull/2) ([danigb](https://github.com/danigb)) + +## [0.0.3](https://github.com/skratchdot/object-path-get/tree/0.0.3) (2015-11-20) +[Full Changelog](https://github.com/skratchdot/object-path-get/compare/0.0.2...0.0.3) + +## [0.0.2](https://github.com/skratchdot/object-path-get/tree/0.0.2) (2014-09-16) +[Full Changelog](https://github.com/skratchdot/object-path-get/compare/0.0.1...0.0.2) + +## [0.0.1](https://github.com/skratchdot/object-path-get/tree/0.0.1) (2014-09-15) + + +\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* \ No newline at end of file diff --git a/README.md b/README.md index cbf9085..8c6c254 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,11 @@ getPath(obj, 'foo|bar', null, '|'); // result: "baz" (with different delimiter) getPath(obj, ['foo', 'bar']); // result "baz" (with array path) ``` + +## Links + +- [Source Code](https://github.com/skratchdot/object-path-get) +- [Changelog](https://github.com/skratchdot/object-path-get/blob/master/CHANGELOG.md) - [Live example on Tonic](https://tonicdev.com/npm/object-path-get) diff --git a/package.json b/package.json index e7a2ee4..1e3a217 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,10 @@ { "name": "object-path-get", - "version": "0.0.3", + "version": "1.0.0", "description": "get values from javascript objects by specifying a path", "main": "index.js", "scripts": { + "changelog": "github_changelog_generator -u skratchdot -p object-path-get", "clean": "rimraf .nyc_output/ coverage/", "cover": "nyc npm test", "coveralls": "cat coverage/lcov.info | coveralls --verbose",