diff --git a/CHANGES.rst b/CHANGES.rst index e948f35c..a443aebb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,13 @@ Release 1.0.1 ========================================= +* **DOCUMENTATION:** Added documentation of hard dependencies to the README (issue #37). + +----------------------- + +Release 1.0.1 +========================================= + * **BUGFIX**: Fixed a bug encountered when parsing CSV data (issue #32). * **ENHANCEMENT**: Added a catch for when trying to set ``Chart.options`` to a ``SharedOptions`` instance (issue #34). * Fixed a broken link in the documentation. diff --git a/README.rst b/README.rst index 68d02600..cde01a07 100644 --- a/README.rst +++ b/README.rst @@ -63,6 +63,18 @@ To install **Highcharts Core for Python**, just execute: $ pip install highcharts-core +Before you install, please be aware of the following "hard" dependencies: + + * Python 3.10 or higher + * Highcharts Core (JS) v.10.2 or higher (not technically a Python dependency, but + it won't work with earlier versions of Highcharts) + * `esprima-python `__ v.4.0 or higher + * `requests `__ v.2.28 or higher + * `validator-collection `__ + v.1.5 or higher + +You can find more information about soft and development dependencies in the +`complete documentation `__. ------------- diff --git a/highcharts_core/__version__.py b/highcharts_core/__version__.py index cd7ca498..a6221b3d 100644 --- a/highcharts_core/__version__.py +++ b/highcharts_core/__version__.py @@ -1 +1 @@ -__version__ = '1.0.1' +__version__ = '1.0.2'