From 18fe5dfb025204f0d797ddde3d220e9682e9db70 Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Thu, 27 Jul 2023 14:40:45 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.5.0=20(#150)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 12 ++++++++++-- sphinx_design/__init__.py | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbd5040..b518749 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,17 @@ # Change Log -## v0.4.0 - 2023-04-13 +## 0.5.0 - 2023-07-27 + +## What's Changed + +* ⬆️ Drop Python 3.7 support, by [@chrisjsewell](https://github.com/chrisjsewell)) in [#146](https://github.com/executablebooks/sphinx-design/pull/146) +* ⬆️ UPGRADE: sphinx>=5,<8, by [@chrisjsewell](https://github.com/chrisjsewell)) in [#148](https://github.com/executablebooks/sphinx-design/pull/148) +**Full Changelog**: + +## v0.4.0 - 2023-04-13 -([full changelog](https://github.com/executablebooks/sphinx-design/compare/v0.3.0...3d0db63f06a8f59a5ea1067e0f43782464eeff83)) +**Full Changelog**: ### Enhancements made diff --git a/sphinx_design/__init__.py b/sphinx_design/__init__.py index f1a1dde..e7260e3 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.4.1" +__version__ = "0.5.0" if TYPE_CHECKING: from sphinx.application import Sphinx