Skip to content

Commit 602160b

Browse files
authored
🚀 RELEASE: v0.2.0 (#75)
1 parent 658dc21 commit 602160b

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

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+
310
## v0.1.0 - 2022-04-21
411

512
- ✨ NEW: Add material design icons roles, thanks to @2bndy5 in [#41](https://github.com/executablebooks/sphinx-design/pull/41)

docs/conf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
"logo_only": True,
4242
}
4343
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+
]
4447
html_theme_options = {
4548
"sidebar_hide_name": True,
4649
}

sphinx_design/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""A sphinx extension for designing beautiful, view size responsive web components."""
22
from typing import TYPE_CHECKING
33

4-
__version__ = "0.1.0"
4+
__version__ = "0.2.0"
55

66
if TYPE_CHECKING:
77
from sphinx.application import Sphinx

0 commit comments

Comments
 (0)