Skip to content

Commit

Permalink
chore: Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikGartner committed Feb 23, 2019
1 parent 2525601 commit da0f191
Show file tree
Hide file tree
Showing 9 changed files with 151 additions and 26 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
<a name="2.1.0"></a>
# [2.1.0](https://github.com/ErikGartner/dtree/compare/2.0.2...v2.1.0) (2019-02-23)


### Bug Fixes

* Bug in build script to update CDN link ([2525601](https://github.com/ErikGartner/dtree/commit/2525601))
* Missing borders in dTree demo ([5926c15](https://github.com/ErikGartner/dtree/commit/5926c15))

### Features

* Add border to SVG in demo ([7876de6](https://github.com/ErikGartner/dtree/commit/7876de6))
* Add callback for node width separation #27 ([027de86](https://github.com/ErikGartner/dtree/commit/027de86))
* Remove unused test stub code ([938395a](https://github.com/ErikGartner/dtree/commit/938395a))
* Update dependencies with Yarn ([6a207c6](https://github.com/ErikGartner/dtree/commit/6a207c6))



<a name="2.0.2"></a>
## [2.0.2](https://github.com/ErikGartner/dtree/compare/2.0.1...v2.0.2) (2017-05-02)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ yarn add d3-dtree

Lastly dTree is also available through several CDNs such as [jsDelivr](https://www.jsdelivr.com/package/npm/d3-dtree):
```
https://cdn.jsdelivr.net/npm/d3-dtree@2.0.2/dist/dTree.min.js
https://cdn.jsdelivr.net/npm/d3-dtree@2.1.0/dist/dTree.min.js
```

## Requirements
Expand Down
12 changes: 10 additions & 2 deletions dist/dTree.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/dTree.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dTree.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/dTree.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ gulp.task('tag-release', function (cb) {
});

gulp.task('commit-changes', function () {
return gulp.src(['./package.json', './CHANGELOG.md', './dist/*', './README.md'])
return gulp.src(['./README.md', './CHANGELOG.md', './dist/*'])
.pipe($.git.add())
.pipe($.git.commit('chore: Bump version number'));
});
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "d3-dtree",
"version": "2.0.2",
"version": "2.1.0",
"description": "A library for visualizing data trees built on top of D3.",
"main": "dist/dTree.js",
"scripts": {
Expand Down Expand Up @@ -47,7 +47,7 @@
"gulp-eslint": "^1.0.0",
"gulp-file": "^0.2.0",
"gulp-filter": "^3.0.0",
"gulp-git": "^1.5.0",
"gulp-git": "^2.9.0",
"gulp-github-release": "^1.1.0",
"gulp-istanbul": "^0.10.0",
"gulp-jscs": "^2.0.0",
Expand Down
Loading

0 comments on commit da0f191

Please sign in to comment.