update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2019-09-10 12:09:37 -05:00
parent 32f5a877f6
commit 7428433217
3 changed files with 5 additions and 3 deletions

View File

@ -5,6 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## Not released:
## 4.0.10 - 2019-09-10
* Fix drag position handling
* Fix multiple selector for find() method

View File

@ -1669,8 +1669,8 @@
* @method
* @name Konva.Context#arcTo
*/
Context.prototype.arcTo = function (a0, a1, a2, a3, a4, a5) {
this._context.arc(a0, a1, a2, a3, a4, a5);
Context.prototype.arcTo = function (a0, a1, a2, a3, a4) {
this._context.arcTo(a0, a1, a2, a3, a4);
};
/**
* beginPath function.

2
konva.min.js vendored

File diff suppressed because one or more lines are too long