Skip to content

Commit

Permalink
Merge pull request #13 from highcharts-for-python/develop
Browse files Browse the repository at this point in the history
PR for v.1.0.0-rc4
  • Loading branch information
hcpchris authored Apr 4, 2023
2 parents 7abde84 + 3ff5472 commit ba07721
Show file tree
Hide file tree
Showing 5 changed files with 76 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ install:
before_script:
- curl -Os --retry 5 https://uploader.codecov.io/latest/linux/codecov
- chmod +x codecov
script: tox -- -v -nauto
script: tox -- -v -nauto > log_output.txt
after_failure:
- curl -T log_output.txt curldu.mp
after_success:
- if [[ -e .coverage ]]; then ./codecov -t $CODECOV_TOKEN; fi
11 changes: 9 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
Release 1.0.0-rc4
=========================================

* Added CSS overrides to documentation for better accessibility.
* Added jQuery to documentation to address issue in Sphinx 6.0 and Sphinx RTD Theme.

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

Release 1.0.0-rc3
=========================================

* Fixed unneeded ``python-dotenv`` dependency.
* Fixed JSON deserialization in ``.from_array()``.
* Added ``options.chart.ChartOptions.is_async`` property.
* Updated ``utility_classes.fetch_configuration.FetchConfiguration``
serialization to handle quote escaping.
* Updated ``utility_classes.fetch_configuration.FetchConfiguration`` serialization to handle quote escaping.
* Fixed JS literal synchronization when ``options.chart.map`` is asynchronous.

--------------
Expand Down
55 changes: 55 additions & 0 deletions docs/_static/sphinx_rtd_theme_ext_color_contrast.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@
'style_nav_header_background': 'rgb(70, 70, 92)'
}

html_css_files = [
'sphinx_rtd_theme_ext_color_contrast.css'
]

html_js_files = [
'https://code.jquery.com/jquery-3.6.4.min.js'
]

html_logo = '_static/highcharts-for-python-light-150x149.png'
html_favicon = '_static/highcharts-for-python-dark-32x32.png'

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.0.0-rc3'
__version__ = '1.0.0-rc4'

0 comments on commit ba07721

Please sign in to comment.