Skip to content

Commit

Permalink
🚀 RELEASE: v0.2.0 (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell authored Jun 14, 2022
1 parent 658dc21 commit 602160b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## v0.2.0 - 2022-06-14

- ⬆️ Support Sphinx v5, drop v3
- ⬆️ Add Python 3.10 support

**Full Changelog**: <https://github.com/executablebooks/sphinx-design/compare/v0.1.0...v0.2.0>

## v0.1.0 - 2022-04-21

- ✨ NEW: Add material design icons roles, thanks to @2bndy5 in [#41](https://github.com/executablebooks/sphinx-design/pull/41)
Expand Down
3 changes: 3 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@
"logo_only": True,
}
if html_theme == "furo":
html_css_files = [
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/fontawesome.min.css"
]
html_theme_options = {
"sidebar_hide_name": True,
}
Expand Down
2 changes: 1 addition & 1 deletion sphinx_design/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""A sphinx extension for designing beautiful, view size responsive web components."""
from typing import TYPE_CHECKING

__version__ = "0.1.0"
__version__ = "0.2.0"

if TYPE_CHECKING:
from sphinx.application import Sphinx
Expand Down

0 comments on commit 602160b

Please sign in to comment.