update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2020-12-18 11:13:13 -05:00
parent 977c1653f5
commit a86aa4ef28
2 changed files with 5 additions and 3 deletions

View File

@ -3,6 +3,8 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## 7.2.2
* Fix wrong size calculations for `Konva.Line` with tension * Fix wrong size calculations for `Konva.Line` with tension
* Fix `shape.intersects()` behavior when a node is dragged * Fix `shape.intersects()` behavior when a node is dragged
* Fix ellipsis rendering for `Konva.Text` * Fix ellipsis rendering for `Konva.Text`

View File

@ -4076,7 +4076,7 @@
* @name Konva.Node#getAbsoluteRotation * @name Konva.Node#getAbsoluteRotation
* @returns {Number} * @returns {Number}
* @example * @example
* // get absolute scale x * // get absolute rotation
* var rotation = node.getAbsoluteRotation(); * var rotation = node.getAbsoluteRotation();
*/ */
Node.prototype.getAbsoluteRotation = function () { Node.prototype.getAbsoluteRotation = function () {
@ -5234,8 +5234,8 @@
* @example * @example
* // get node size * // get node size
* var size = node.size(); * var size = node.size();
* var x = size.x; * var width = size.width;
* var y = size.y; * var height = size.height;
* *
* // set size * // set size
* node.size({ * node.size({