From 85aeb152baabbe0fbc2a7d3fcdbff4f84c29765d Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Thu, 5 Aug 2021 20:42:38 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.0.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 8 +++++++- sphinx_design/__init__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) 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