From d6b49914453298107efb9abd1126dc9c67ddac7b Mon Sep 17 00:00:00 2001 From: Lucy Liu Date: Sat, 25 Sep 2021 14:16:47 +1000 Subject: [PATCH] release 0.10.0 --- CHANGES.rst | 43 +++++++++++++++++++++++++++++++++++--- sphinx_gallery/__init__.py | 2 +- 2 files changed, 41 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 47394dc94..a8708fdd3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,13 +4,50 @@ Change Log v0.10.0 ------- -In this version the default Sphinx-Gallery `.css` filenames have been -updated to be prepended with 'sg\_'. For more details see `#845 `_. +In this version, the default Sphinx-Gallery `.css` files have been +updated so their names are all prepended with 'sg\_'. +For more details see `#845 `_. + +**Implemented enhancements:** + +- Generalising image_scrapers facility for non-images `#833 `__ +- Add a mode that fails only for rst warnings and does not run examples `#751 `__ +- Add a “template”, to make it easy to get started `#555 `__ +- ENH Add config that generates dummy images to prevent missing image warnings `#828 `__ (`lucyleeow `__) +- ENH: add hidpi option to matplotlib_scraper and directive `#808 `__ (`jklymak `__) **Fixed bugs:** -- Remove `ANSI characters `_ from HTML output `#838 `__ (`agramfort `__) +- BUG URL quote branch names and filepaths in Binder URLs `#844 `__ (`sdhiscocks `__) +- Sanitize ANSI characters from generated RST: Remove `ANSI characters `_ from HTML output `#838 `__ (`agramfort `__) +- Bug Pin markupsafe version in Python nightly `#831 `__ (`lucyleeow `__) +- BUG Fix test_minigallery_directive failing on Windows `#830 `__ (`lucyleeow `__) +- BUG Fix LaTeX Error: File \`tgtermes.sty’ not found in CI `#829 `__ (`lucyleeow `__) + +**Closed issues:** + +- Galleries using bokeh `#841 `__ +- TorchIO now uses sphinx-gallery `#823 `__ +- New release `#817 `__ +- Change DPI? `#804 `__ +- Multiple images in horizontal list are not clickable (cannot zoom in) `#429 `__ +- Notebook style issues with indentation `#342 `__ + +**Merged pull requests:** +- DOC Update reset_modules documentation `#861 `__ (`lucyleeow `__) +- Remove trailing whitespace `#859 `__ (`lucyleeow `__) +- Add info on enabling animation support to example `#858 `__ (`dstansby `__) +- Update css file names, fix documentation `#857 `__ (`lucyleeow `__) +- MAINT: Fix mayavi build hang circleci `#850 `__ (`lucyleeow `__) +- MAINT: Fix mayavi build hang azure CI `#848 `__ (`lucyleeow `__) +- Refactor execute_code_block in gen_rst.py `#842 `__ (`lucyleeow `__) +- [Maint] Remove travis `#840 `__ (`agramfort `__) +- DOC Add gif to supported image extensions `#836 `__ (`lucyleeow `__) +- DOC Clarifications and fixes to image_scrapers doc `#834 `__ (`jnothman `__) +- DOC Update projects list in readme.rst `#826 `__ (`lucyleeow `__) +- DOC Fix zenodo badge link `#825 `__ (`lucyleeow `__) +- DOC Add TorchIO to users list `#824 `__ (`fepegar `__) v0.9.0 ------ diff --git a/sphinx_gallery/__init__.py b/sphinx_gallery/__init__.py index f403e72ae..5ebbd8cc4 100644 --- a/sphinx_gallery/__init__.py +++ b/sphinx_gallery/__init__.py @@ -6,7 +6,7 @@ import os # dev versions should have "dev" in them, stable should not. # doc/conf.py makes use of this to set the version drop-down. -__version__ = '0.10.0.dev0' +__version__ = '0.10.0' def glr_path_static():