From fb8f2a59872a3462872a957ea8bb1902f31140d5 Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Thu, 21 Apr 2022 00:53:39 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.1.0=20(#62)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 13 ++++++++++++- sphinx_design/__init__.py | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d5f75b..b675891 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Change Log -## v0.0.13 +## 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) +- ⬆️ UPGRADE: octicons to v16.1.1, thanks to @pocek in [#43](https://github.com/executablebooks/sphinx-design/pull/43) +- 🐛 FIX: Links in card titles by @chrisjsewell in [#59](https://github.com/executablebooks/sphinx-design/pull/59) +- 🐛 FIX: Exception on missing card link by @chrisjsewell in [#60](https://github.com/executablebooks/sphinx-design/pull/60) +- 🔧 MAINTAIN: Move from setuptools to flit for package build by @chrisjsewell in [#58](https://github.com/executablebooks/sphinx-design/pull/58) +- 🔧 MAINTAIN: Drop furo-specific stylesheet, thanks to @pradyunsg in [#22](https://github.com/executablebooks/sphinx-design/pull/22) + +**Full Changelog**: + +## v0.0.13 - 2021-10-27 ✨ NEW: add icon `far` role (#35), thanks to @OriolAbril diff --git a/sphinx_design/__init__.py b/sphinx_design/__init__.py index 40231a5..e18035d 100644 --- a/sphinx_design/__init__.py +++ b/sphinx_design/__init__.py @@ -1,7 +1,7 @@ """A sphinx extension for designing beautiful, view size responsive web components.""" from typing import TYPE_CHECKING -__version__ = "0.0.13" +__version__ = "0.1.0" if TYPE_CHECKING: from sphinx.application import Sphinx