From 372e49611c40e50bfc8b223329879164da2d5014 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Mon, 23 Oct 2023 15:57:55 -0400 Subject: [PATCH] build: Iterate the version number --- CHANGELOG.rst | 7 +++++++ docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 007adf7..4adfbb2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,10 @@ +0.4.0 - October 23, 2023 +------------------------ + +* feat: :meth:`.Chart.add_line` accepts a `stroke_dasharray argument `_. +* feat: Add a ``default_stroke_dasharray`` theme option. +* fix: Apply the ``axis_title_font_size`` and ``tick_font_size`` theme options. + 0.3.5 - October 23, 2023 ------------------------ diff --git a/docs/conf.py b/docs/conf.py index 3c6c2c6..c060565 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ project = 'leather' copyright = '2016, Christopher Groskopf' -version = '0.3.5' +version = '0.4.0' release = version # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 5712604..1a5ea65 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='leather', - version='0.3.5', + version='0.4.0', description='Python charting for 80% of humans.', long_description=long_description, long_description_content_type='text/x-rst',