diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f0827d..fec73db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## v0.0.7 - 2021-05-08 + +✨ NEW: Add `reverse` option for `grid` directive + +✨ NEW: Add animations + ## v0.0.6 - 2021-04-08 ✨ NEW: Add `card-carousel` directive @@ -10,7 +16,7 @@ ## v0.0.4 - 2021-28-07 -👌 IMPROVE: Allow `auto` for grid columns. +👌 IMPROVE: Allow `auto` for grid columns ## v0.0.3 - 2021-26-07 diff --git a/sphinx_design/__init__.py b/sphinx_design/__init__.py index 66f75c7..4acda48 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.6" +__version__ = "0.0.7" if TYPE_CHECKING: from sphinx.application import Sphinx