update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2017-10-11 13:38:16 +04:00
parent 8b2f847850
commit 2ee1827564
2 changed files with 8 additions and 3 deletions

View File

@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Not released][Not released]
## [1.7.2][2017-10-11]
### Fixed
- Fixed `Konva.document is undefined`
## [1.7.1][2017-10-11]
### Changed

View File

@ -245,15 +245,15 @@
glob.Konva = Konva;
Konva.global = glob;
Konva.document = document;
Konva.window = window;
if (typeof exports === 'object') {
module.exports = Konva;
return;
} else if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(function() {
return Konva;
});
}
Konva.document = document;
Konva.window = window;
})();