From b54cabd9967c2203252b5a0e04ea69b52f18d3ec Mon Sep 17 00:00:00 2001 From: Mr-Milk Date: Thu, 13 Oct 2022 10:08:41 +0800 Subject: [PATCH] v0.2.5 --- docs/source/conf.py | 2 +- docs/source/tutorial/layout.rst | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index bb2c542..376087b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,7 +1,7 @@ project = 'legendkit' copyright = '2022, Mr-Milk' author = 'Mr-Milk' -release = '0.2.4' +release = '0.2.5' extensions = [ 'sphinx.ext.autodoc', diff --git a/docs/source/tutorial/layout.rst b/docs/source/tutorial/layout.rst index 8e941ce..881ce77 100644 --- a/docs/source/tutorial/layout.rst +++ b/docs/source/tutorial/layout.rst @@ -11,7 +11,7 @@ Use legendkit layout features to help you out. :context: close-figs >>> from legendkit import cat_legend, vstack, hstack - >>> _, ax = plt.subplots(figsize=(6, 3)); ax.set_axis_off() + >>> _, ax = plt.subplots(figsize=(7, 3)); ax.set_axis_off() >>> args = dict( ... colors = ["#A7D2CB", "#F2D388"], ... labels = ["Item 1", "Item 2"], diff --git a/pyproject.toml b/pyproject.toml index 45f0143..3c5e3a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "legendkit" -version = "0.2.4" +version = "0.2.5" description = "Legend creation and manipulation with ease for matplotlib" authors = ["Mr-Milk "] license = "MIT"