From 6f83186f4ade73def4fec1eb2d40a78a31146e01 Mon Sep 17 00:00:00 2001 From: Julien Sanchez Date: Tue, 21 Nov 2023 16:32:53 +0100 Subject: [PATCH] Bump 3.0.4 --- docs/changelog.rst | 7 +++++++ docs/conf.py | 2 +- pygal/__about__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index bc274568..1c7c52af 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,13 @@ Changelog ========= +3.0.4 +===== + +**Fixed** + +* Missing declaration of `importlib_metadata` dependency in `setup.py` + 3.0.3 ===== diff --git a/docs/conf.py b/docs/conf.py index d6d62cf2..9cd64fc4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,7 +62,7 @@ # The short X.Y version. version = '3.0' # The full version, including alpha/beta/rc tags. -release = '3.0.3' +release = '3.0.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pygal/__about__.py b/pygal/__about__.py index 9e6b6d88..8b149c4b 100644 --- a/pygal/__about__.py +++ b/pygal/__about__.py @@ -1,5 +1,5 @@ __title__ = "pygal" -__version__ = "3.0.3" +__version__ = "3.0.4" __summary__ = "A Python svg graph plotting library" __uri__ = "https://www.pygal.org/"