diff --git a/CHANGELOG.md b/CHANGELOG.md index c28d9cf..8836a51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## v0.3.0 - 2022-08-22 + +- ⬆️ Update Materials Design Icons to v4.0.0-46-gc9e5528, thanks to @2bndy5 (#69) +- 🐛 FIX: dropdown/tab-item `:name:` options (#91) +- 🐛 FIX: Docs build against non-html formats (#88) +- 👌 IMPROVE: Add card options `class-img-top`/`class-img-bottom` (#92) +- 👌 IMPROVE: Add `link-alt` to fix card link accessibility (#89) + - adds the `link-alt` option to `card` (and `grid-item-card`) directives, in order to assign a discernable name to the link (for screen readers). +- 👌 IMPROVE: Make tab ids deterministic (#93) + - Use increasing indices, rather than UUIDs +- 🔧 MAINTAIN: Fix docutils `PendingDeprecationWarning` (#94) +- 📚 DOCS: Update font awesome icons (#64) + +**Full Changelog**: + ## v0.2.0 - 2022-06-14 - ⬆️ Support Sphinx v5, drop v3 diff --git a/sphinx_design/__init__.py b/sphinx_design/__init__.py index 39f53b2..e01ba73 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.2.0" +__version__ = "0.3.0" if TYPE_CHECKING: from sphinx.application import Sphinx