diff --git a/CHANGES.rst b/CHANGES.rst
index f473642..263fb81 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,4 +1,12 @@
+Release 1.10.1
+=========================================
+
+* **BUGFIX:** Fixed missing handling of JS module for `HeatmapOptions` and `HeatmapSeries` (closes #207).
+
+----
+
+
Release 1.10.0
=========================================
diff --git a/highcharts_core/__version__.py b/highcharts_core/__version__.py
index 52af183..ff987d2 100644
--- a/highcharts_core/__version__.py
+++ b/highcharts_core/__version__.py
@@ -1 +1 @@
-__version__ = '1.10.0'
+__version__ = '1.10.1'
diff --git a/highcharts_core/constants.py b/highcharts_core/constants.py
index d5255c4..86251e4 100644
--- a/highcharts_core/constants.py
+++ b/highcharts_core/constants.py
@@ -129,6 +129,7 @@ def __repr__(self):
+
diff --git a/highcharts_core/module_requirements.json b/highcharts_core/module_requirements.json
index e4829a2..7c143eb 100644
--- a/highcharts_core/module_requirements.json
+++ b/highcharts_core/module_requirements.json
@@ -394,6 +394,9 @@
"plotOptions.geoheatmap": [
"modules/geoheatmap"
],
+ "plotOptions.heatmap": [
+ "modules/heatmap"
+ ],
"plotOptions.heikinashi": [
"modules/heikinashi"
],
@@ -840,6 +843,9 @@
"series.gauge": [
"highcharts-more"
],
+ "series.heatmap": [
+ "modules/heatmap"
+ ],
"series.heikinashi": [
"modules/heikinashi"
],