Skip to content

Commit

Permalink
Prep for release 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Feb 18, 2024
1 parent 97dd7c9 commit f5f7ecd
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
18 changes: 15 additions & 3 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@



Release 3.2.0 - February XX 2023
Release 3.2.0 - February 17 2024
--------------------------------

This is the 10th anniversary release of XlsxWriter. Version 0.0.1 was released
on February 17 2013. Since they there have been 167 releases, 25,000 lines of
code, 1600 test cases, 700 pages of documentation, 71,000 users on GitHub, 50
contributors, 1000 closed issues and 150 million yearly downloads. Thanks to
everyone who has contributed code, given feedback or just used the library.

* Add :func:`embed_image()` worksheet method to embed images in cells. This is
equivalent to Excel's menu item to insert an image using the option to "Place
in Cell". It scales images automatically to the dimensions of the cell.

This has been a frequently requested feature for people creating spreadsheets
with images for product items. See also :ref:`ex_embedded_images`.

* Fix issue where a horizontal alignment format was ignored if indentation was
also set.

:issue:`1041`.
:issue:`1041`.


Release 3.1.9 - October 19 2023
Expand Down
2 changes: 1 addition & 1 deletion dev/docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
project = u'XlsxWriter'
copyright = u'2013-2024, John McNamara'

version = '3.1.9'
version = '3.2.0'
release = version

exclude_patterns = []
Expand Down
4 changes: 2 additions & 2 deletions dev/docs/source/worksheet.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1279,7 +1279,7 @@ worksheet.insert_image()

This method can be used to insert a image into a worksheet.

This is the equivalent to Excel's menu option to insert an image using the
This is the equivalent of Excel's menu option to insert an image using the
option to "Place over Cells". See :func:`embed_image` for the equivalent method
to "Place in Cell".

Expand Down Expand Up @@ -1429,7 +1429,7 @@ image automatically scale to the width and height of the cell. The X/Y scaling
of the image is preserved but the size of the image is adjusted to fit the
largest possible width or height depending on the cell dimensions.

This is the equivalent to Excel's menu option to insert an image using the
This is the equivalent of Excel's menu option to insert an image using the
option to "Place in Cell". See :func:`insert_image` for the equivalent method to
"Place over Cells".

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def run(self):

setup(
name='XlsxWriter',
version='3.1.9',
version='3.2.0',
author='John McNamara',
author_email='jmcnamara@cpan.org',
url='https://github.com/jmcnamara/XlsxWriter',
Expand Down
2 changes: 1 addition & 1 deletion xlsxwriter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
# SPDX-License-Identifier: BSD-2-Clause
# Copyright 2013-2024, John McNamara, jmcnamara@cpan.org
#
__version__ = "3.1.9"
__version__ = "3.2.0"
__VERSION__ = __version__
from .workbook import Workbook # noqa

0 comments on commit f5f7ecd

Please sign in to comment.