Skip to content

Commit 9c5fb67

Browse files
committed
Prep for release 3.1.9
1 parent 325178c commit 9c5fb67

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

Changes

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Release 3.1.9 - October 19 2023
2+
-------------------------------
3+
4+
* Add fix for errant XML tag in chart leader lines for non-Pie charts.
5+
6+
:issue :`1019` and :feature:`1012`.
7+
8+
19
Release 3.1.8 - October 15 2023
210
-------------------------------
311

dev/docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
project = u'XlsxWriter'
99
copyright = u'2013-2023, John McNamara'
1010

11-
version = '3.1.8'
11+
version = '3.1.9'
1212
release = version
1313

1414
exclude_patterns = []

docs/XlsxWriter.pdf

463 Bytes
Binary file not shown.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def run(self):
2828

2929
setup(
3030
name='XlsxWriter',
31-
version='3.1.8',
31+
version='3.1.9',
3232
author='John McNamara',
3333
author_email='[email protected]',
3434
url='https://github.com/jmcnamara/XlsxWriter',

xlsxwriter/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
# SPDX-License-Identifier: BSD-2-Clause
33
# Copyright 2013-2023, John McNamara, [email protected]
44
#
5-
__version__ = "3.1.8"
5+
__version__ = "3.1.9"
66
__VERSION__ = __version__
77
from .workbook import Workbook # noqa

0 commit comments

Comments
 (0)