update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2021-03-03 12:06:37 -05:00
parent d7e092bad3
commit 42276bfce2
4 changed files with 9 additions and 3 deletions

View File

@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 7.2.5
* Fix transform update on `letterSpacing` change of `Konva.Text`
## 7.2.4
* Fix wrong `mouseleave` trigger for `Konva.Stage`

View File

@ -8,7 +8,7 @@
* Konva JavaScript Framework v7.2.4
* http://konvajs.org/
* Licensed under the MIT
* Date: Fri Feb 19 2021
* Date: Wed Mar 03 2021
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)
@ -13962,6 +13962,7 @@
'padding',
'wrap',
'lineHeight',
'letterSpacing',
];
_registerNode(Text);
/**

4
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -596,6 +596,7 @@ Text.prototype._attrsAffectingSize = [
'padding',
'wrap',
'lineHeight',
'letterSpacing',
];
_registerNode(Text);