Skip to content

Commit 2c2f25a

Browse files
authored
Merge pull request #50 from highcharts-for-python/develop
Release Candidate v.1.7
2 parents c5fa3b3 + 122b3b2 commit 2c2f25a

File tree

9 files changed

+25
-9
lines changed

9 files changed

+25
-9
lines changed

CHANGES.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11

2+
Release 1.7.0
3+
=========================================
4+
5+
* **ENHANCEMENT:** Align the API to **Highcharts Maps (JS) v.11.4** (#48). In particular, this includes:
6+
7+
* Updated requirements to depend on Highcharts Core for Python v.1.7.
8+
* Added ``Accessibility.high_contrast_mode`` support.
9+
* Added ``OrganizationOptions.hanging_side`` support.
10+
* Added ``SankeyOptions.node_distance`` support.
11+
* Added ``TreegraphOptions.node_distance`` support.
12+
* Adjusted diagram (``ArcDiagramOptions``, ``TreegraphOptions``, ``DependencyWheelOptions``, and
13+
``SankeyOptions``) ``.node_width`` support and documentation.
14+
* Added ``NodeOptions.height`` support.
15+
16+
--------------------
17+
218
Release 1.6.0
319
=========================================
420

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ JavaScript data visualization library.
1616
* The **Highcharts Export Server** - enabling the programmatic creation of static
1717
(downloadable) data visualizations
1818

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

2121
**Highcharts Maps for Python** is fully integrated with the broader Python ecosystem,
2222
offering native integrations with:
@@ -85,7 +85,7 @@ Before you install, please be aware of the following "hard" dependencies:
8585
* Python 3.10 or higher
8686
* Highcharts Maps (JS) v.10.2 or higher (not technically a Python dependency, but
8787
it won't work with earlier versions of Highcharts)
88-
* `Highcharts Core for Python <https://core-docs.highchartspython.com/en/latest/>`__ v.1.6 or higher
88+
* `Highcharts Core for Python <https://core-docs.highchartspython.com/en/latest/>`__ v.1.7 or higher
8989
* `esprima-python <https://github.com/Kronuz/esprima-python>`__ v.4.0 or higher
9090
* `requests <https://requests.readthedocs.io/en/latest/>`__ v.2.31 or higher
9191
* `validator-collection <https://validator-collection.readthedocs.io/en/latest/>`__

docs/_dependencies.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Not technically a Python dependency, but obviously **Highcharts Maps for Python**
3333
will not work properly if your rendering layer does not leverage Highcharts Maps.
3434

35-
* `highcharts-core <https://core-docs.highchartspython.com>`_ v.1.6.0 or higher
35+
* `highcharts-core <https://core-docs.highchartspython.com>`_ v.1.7.0 or higher
3636
* `esprima-python <https://github.com/Kronuz/esprima-python>`_ v.4.0 or higher
3737
* `requests <https://requests.readthedocs.io/en/latest/>`_ v.2.31 or higher
3838
* `validator-collection <https://validator-collection.readthedocs.io/en/latest/>`_

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Highcharts Maps for Python
3737

3838
.. sidebar:: Version Compatibility
3939

40-
**Latest Highcharts (JS) version supported:** v.11.3.0
40+
**Latest Highcharts (JS) version supported:** v.11.4.0
4141

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

highcharts_maps/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.6.0'
1+
__version__ = '1.7.0'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ classifiers = [
5858

5959
requires-python = ">= 3.10"
6060
dependencies = [
61-
"highcharts-core>=1.6.0",
61+
"highcharts-core>=1.7.0",
6262
"esprima>=4.0.1",
6363
"validator-collection>=1.5.0",
6464
"requests>=2.31.0",

requirements.dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ sphinx-tabs>=3.4.1
1717
requests==2.31.0
1818
tox==4.0.0
1919
validator-collection==1.5.0
20-
highcharts-core>=1.6.0
20+
highcharts-core>=1.7.0

requirements.travis.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ sphinx-tabs>=3.4.1
1717
requests==2.31.0
1818
tox==4.0.0
1919
validator-collection==1.5.0
20-
highcharts-core>=1.6.0
20+
highcharts-core>=1.7.0

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ geojson==3.0.1
33
requests==2.31.0
44
topojson==1.5
55
validator-collection==1.5.0
6-
highcharts-core>=1.6.0
6+
highcharts-core>=1.7.0

0 commit comments

Comments
 (0)