diff --git a/CHANGELOG.md b/CHANGELOG.md
index b89a3e10b779704717e7ae70c5560825fc568a15..468bb5f38e21b1729d7d3256804783c8c8e8bb64 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [10.15.7](https://github.com/sweetalert2/sweetalert2/compare/v10.15.6...v10.15.7) (2021-03-26)
+
+
+### Bug Fixes
+
+* Cannot read property 'stopKeydownPropagation' of undefined fix [#2204](https://github.com/sweetalert2/sweetalert2/issues/2204) ([541e8ab](https://github.com/sweetalert2/sweetalert2/commit/541e8abf2cc4c0b8892dcf1a7ca9a04cd21744ae))
+
 ## [10.15.6](https://github.com/sweetalert2/sweetalert2/compare/v10.15.5...v10.15.6) (2021-03-17)
 
 
diff --git a/package.json b/package.json
index c9c96a218ee1d45c06f988bf1b2ea619cd7c94bb..18e2be36450fc4e9ff648bcf882af9c0a80dfa62 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "sweetalert2",
-  "version": "10.15.6",
+  "version": "10.15.7",
   "repository": "sweetalert2/sweetalert2",
   "homepage": "https://sweetalert2.github.io/",
   "description": "A beautiful, responsive, customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes, supported fork of sweetalert",
diff --git a/src/SweetAlert.js b/src/SweetAlert.js
index 2f54e95cbd948ff27b0b273f29fe1af57a922366..c8f375c6de0c23d89ffc8c46a23e59495ae52770 100644
--- a/src/SweetAlert.js
+++ b/src/SweetAlert.js
@@ -64,6 +64,6 @@ Object.keys(instanceMethods).forEach(key => {
 
 SweetAlert.DismissReason = DismissReason
 
-SweetAlert.version = '10.15.6'
+SweetAlert.version = '10.15.7'
 
 export default SweetAlert