Skip to content

Release Candidate v.1.7 #50

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Apr 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@

Release 1.7.0
=========================================

* **ENHANCEMENT:** Align the API to **Highcharts Maps (JS) v.11.4** (#48). In particular, this includes:

* Updated requirements to depend on Highcharts Core for Python v.1.7.
* Added ``Accessibility.high_contrast_mode`` support.
* Added ``OrganizationOptions.hanging_side`` support.
* Added ``SankeyOptions.node_distance`` support.
* Added ``TreegraphOptions.node_distance`` support.
* Adjusted diagram (``ArcDiagramOptions``, ``TreegraphOptions``, ``DependencyWheelOptions``, and
``SankeyOptions``) ``.node_width`` support and documentation.
* Added ``NodeOptions.height`` support.

--------------------

Release 1.6.0
=========================================

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ JavaScript data visualization library.
* The **Highcharts Export Server** - enabling the programmatic creation of static
(downloadable) data visualizations

The library supports Highcharts (JS) v.10.2 and higher, including Highcharts (JS) v.11.3.0.
The library supports Highcharts (JS) v.10.2 and higher, including Highcharts (JS) v.11.4.0.

**Highcharts Maps for Python** is fully integrated with the broader Python ecosystem,
offering native integrations with:
Expand Down Expand Up @@ -85,7 +85,7 @@ Before you install, please be aware of the following "hard" dependencies:
* Python 3.10 or higher
* Highcharts Maps (JS) v.10.2 or higher (not technically a Python dependency, but
it won't work with earlier versions of Highcharts)
* `Highcharts Core for Python <https://core-docs.highchartspython.com/en/latest/>`__ v.1.6 or higher
* `Highcharts Core for Python <https://core-docs.highchartspython.com/en/latest/>`__ v.1.7 or higher
* `esprima-python <https://github.com/Kronuz/esprima-python>`__ v.4.0 or higher
* `requests <https://requests.readthedocs.io/en/latest/>`__ v.2.31 or higher
* `validator-collection <https://validator-collection.readthedocs.io/en/latest/>`__
Expand Down
2 changes: 1 addition & 1 deletion docs/_dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
Not technically a Python dependency, but obviously **Highcharts Maps for Python**
will not work properly if your rendering layer does not leverage Highcharts Maps.

* `highcharts-core <https://core-docs.highchartspython.com>`_ v.1.6.0 or higher
* `highcharts-core <https://core-docs.highchartspython.com>`_ v.1.7.0 or higher
* `esprima-python <https://github.com/Kronuz/esprima-python>`_ v.4.0 or higher
* `requests <https://requests.readthedocs.io/en/latest/>`_ v.2.31 or higher
* `validator-collection <https://validator-collection.readthedocs.io/en/latest/>`_
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Highcharts Maps for Python

.. sidebar:: Version Compatibility

**Latest Highcharts (JS) version supported:** v.11.3.0
**Latest Highcharts (JS) version supported:** v.11.4.0

**Highcharts Maps for Python** is designed to be compatible with:

Expand Down
2 changes: 1 addition & 1 deletion highcharts_maps/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.6.0'
__version__ = '1.7.0'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ classifiers = [

requires-python = ">= 3.10"
dependencies = [
"highcharts-core>=1.6.0",
"highcharts-core>=1.7.0",
"esprima>=4.0.1",
"validator-collection>=1.5.0",
"requests>=2.31.0",
Expand Down
2 changes: 1 addition & 1 deletion requirements.dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ sphinx-tabs>=3.4.1
requests==2.31.0
tox==4.0.0
validator-collection==1.5.0
highcharts-core>=1.6.0
highcharts-core>=1.7.0
2 changes: 1 addition & 1 deletion requirements.travis.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ sphinx-tabs>=3.4.1
requests==2.31.0
tox==4.0.0
validator-collection==1.5.0
highcharts-core>=1.6.0
highcharts-core>=1.7.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ geojson==3.0.1
requests==2.31.0
topojson==1.5
validator-collection==1.5.0
highcharts-core>=1.6.0
highcharts-core>=1.7.0
Loading