File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## v0.2.0 - 2022-06-14
4
+
5
+ - ⬆️ Support Sphinx v5, drop v3
6
+ - ⬆️ Add Python 3.10 support
7
+
8
+ ** Full Changelog** : < https://github.com/executablebooks/sphinx-design/compare/v0.1.0...v0.2.0 >
9
+
3
10
## v0.1.0 - 2022-04-21
4
11
5
12
- ✨ NEW: Add material design icons roles, thanks to @2bndy5 in [ #41 ] ( https://github.com/executablebooks/sphinx-design/pull/41 )
Original file line number Diff line number Diff line change 41
41
"logo_only" : True ,
42
42
}
43
43
if html_theme == "furo" :
44
+ html_css_files = [
45
+ "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/fontawesome.min.css"
46
+ ]
44
47
html_theme_options = {
45
48
"sidebar_hide_name" : True ,
46
49
}
Original file line number Diff line number Diff line change 1
1
"""A sphinx extension for designing beautiful, view size responsive web components."""
2
2
from typing import TYPE_CHECKING
3
3
4
- __version__ = "0.1 .0"
4
+ __version__ = "0.2 .0"
5
5
6
6
if TYPE_CHECKING :
7
7
from sphinx .application import Sphinx
You can’t perform that action at this time.
0 commit comments