Skip to content

Commit

Permalink
adding changelog and bumping version
Browse files Browse the repository at this point in the history
  • Loading branch information
skratchdot committed Aug 27, 2016
1 parent 3b380e0 commit d7299ee
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)*
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit d7299ee

Please sign in to comment.