Hello community, here is the log from the commit of package python-XlsxWriter for openSUSE:Factory checked in at 2018-12-24 11:47:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-XlsxWriter (Old) and /work/SRC/openSUSE:Factory/.python-XlsxWriter.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-XlsxWriter" Mon Dec 24 11:47:58 2018 rev:5 rq:660755 version:1.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-XlsxWriter/python-XlsxWriter.changes 2017-04-14 13:34:52.735491668 +0200 +++ /work/SRC/openSUSE:Factory/.python-XlsxWriter.new.28833/python-XlsxWriter.changes 2018-12-24 11:47:59.873101910 +0100 @@ -1,0 +2,96 @@ +Sat Dec 22 02:29:29 UTC 2018 - Todd R <[email protected]> + +- Update to version 1.1.2 + * Fix for issue where ``in_memory`` files weren't compressed. + Issue `#573 <https://github.com/jmcnamara/XlsxWriter/issues/573>`_. + * Fix ``write()`` so that it handles array formulas as documented. + Issue `#418 <https://github.com/jmcnamara/XlsxWriter/issues/418>`_. + * Fix for issue with special characters in worksheet table functions. + Issue `#442 <https://github.com/jmcnamara/XlsxWriter/issues/442>`_. + * Added warnings for input issues in :func:`write_rich_string()` such as blank + strings, double formats or insufficient parameters. + Issue `#425 <https://github.com/jmcnamara/XlsxWriter/issues/425>`_. +- Update to version 1.1.1 + * Added comment font name and size options. + Issue `#201 <https://github.com/jmcnamara/XlsxWriter/issues/201>`_. + * Fix for issue when using text boxes in the same workbook as a chartsheet. + Issue `#420 <https://github.com/jmcnamara/XlsxWriter/issues/420>`_. +- Update to version 1.1.0 + * Added functionality to align chart category axis labels. See the + ``label_align`` property of the :func:`set_x_axis()` method. + * Added worksheet :func:`hide_row_col_headers()` method to turn off worksheet + row and column headings. + Issue `#480 <https://github.com/jmcnamara/XlsxWriter/issues/480>`_. + * Added the :func:`set_tab_ratio()` method to set the ratio between the + worksheet tabs and the horizontal slider. + Issue `#481 <https://github.com/jmcnamara/XlsxWriter/issues/481>`_. + * Fixed issue with icon conditional formats when the values were zero. + Issue `#565 <https://github.com/jmcnamara/XlsxWriter/issues/565>`_. +- Update to version 1.0.9 + * Fix for issue with formulas quoted as strings in conditional formats, + introduced in version 1.0.7. + Issue `#564 <https://github.com/jmcnamara/XlsxWriter/issues/564>`_. +- Update to version 1.0.8 + * Added named exceptions to XlsxWriter. See :ref:`exceptions`. + * Removed the implicit :func:`close()` in the destructor since it wasn't + guaranteed to work correctly and raised a confusing exception when any other + exception was triggered. **Note that this is a backward incompatible + change.** The ``with`` context manager is a better way to close + automatically, see :func:`close()`. + * Added border, fill, pattern and gradient formatting options to + :func:`set_legend()`. + Issue `#545 <https://github.com/jmcnamara/XlsxWriter/issues/545>`_. + * Added ``top_right`` position to :func:`set_legend()`. + Issue `#537 <https://github.com/jmcnamara/XlsxWriter/issues/537>`_. +- Update to version 1.0.7 + * Fix for unicode type error in Python 3. + Issue `#554 <https://github.com/jmcnamara/XlsxWriter/issues/554>`_. +- Update to version 1.0.6 + * Added some performance improvements. + PR `#551 <https://github.com/jmcnamara/XlsxWriter/pull/551>`_. +- Update to version 1.0.5 + * Added example of how to subclass the Workbook and Worksheet objects. See + :ref:`ex_inheritance1` and :ref:`ex_inheritance2`. + * Added support for WMF and EMF image formats to the Worksheet + :func:`add_image` method. +- Update to version 1.0.4 + * Set the xlsx internal file member datetimes to 1980-01-01 00:00:00 like + Excel so that apps can produce a consistent binary file once the workbook + :func:`set_properties` ``created`` date is set. + Pull request `#495 <https://github.com/jmcnamara/XlsxWriter/pull/495>`_. + * Fix for jpeg images that reported unknown height/width due to unusual SOF markers. + Issue `#506 <https://github.com/jmcnamara/XlsxWriter/issues/506>`_. + * Added support for blanks in list autofilter. + Issue `#505 <https://github.com/jmcnamara/XlsxWriter/issues/505>`_. +- Update to version 1.0.3 + * Added Excel 2010 data bar features such as solid fills and control over the + display of negative values. See :ref:`working_with_conditional_formats` and + :ref:`ex_cond_format`. + Feature request `#502 <https://github.com/jmcnamara/XlsxWriter/issues/502>`_. + * Fixed :func:`set_column` parameter names to match docs and other methods. + Note, this is a backward incompatible change. + Issue `#504 <https://github.com/jmcnamara/XlsxWriter/issues/504>`_. + * Fixed missing plotarea formatting in pie/doughnut charts. +- Update to version 1.0.2 + * Fix for cases where the hyperlink style added in the previous release didn't + work. + Feature request `#455 <https://github.com/jmcnamara/XlsxWriter/issues/455>`_. +- Update to version 1.0.1 + * Changed default :func:`write_url` format to the Excel hyperlink style so that + it changes when the theme is changed and also so that it indicates that the + link has been clicked. + Feature request `#455 <https://github.com/jmcnamara/XlsxWriter/issues/455>`_. +- Update to version 1.0.0 + * Added icon sets to conditional formatting. See + :ref:`working_with_conditional_formats` and :ref:`ex_cond_format`. + Feature request `#387 <https://github.com/jmcnamara/XlsxWriter/issues/387>`_. +- Update to version 0.9.9 + * Added ``stop_if_true`` parameter to conditional formatting. + Feature request `#386 <https://github.com/jmcnamara/XlsxWriter/issues/386>`_. +- Update to version 0.9.8 + * Fixed issue where spurious deprecation warning was raised in ``-Werror`` mode. + ssue `#451 <https://github.com/jmcnamara/XlsxWriter/issues/451>`_. +- Update to version 0.9.7 + * Minor bug and doc fixes. + +------------------------------------------------------------------- Old: ---- XlsxWriter-0.9.6.tar.gz New: ---- XlsxWriter-1.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-XlsxWriter.spec ++++++ --- /var/tmp/diff_new_pack.VPuFPZ/_old 2018-12-24 11:48:00.341101499 +0100 +++ /var/tmp/diff_new_pack.VPuFPZ/_new 2018-12-24 11:48:00.345101495 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-XlsxWriter # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,14 +19,13 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define oldpython python Name: python-XlsxWriter -Version: 0.9.6 +Version: 1.1.2 Release: 0 Summary: Python module for writing OOXML spreadsheet files License: BSD-2-Clause Group: Development/Languages/Python Url: https://xlsxwriter.readthedocs.org/ Source: https://files.pythonhosted.org/packages/source/X/XlsxWriter/XlsxWriter-%{version}.tar.gz -BuildRequires: %{python_module devel} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros @@ -63,8 +62,8 @@ mv %{buildroot}%{_bindir}/vba_extract.py \ %{buildroot}%{_bindir}/vba_extract-%$python_bin_suffix} +%python_expand %fdupes %{buildroot}%{$python_sitelib} %prepare_alternative vba_extract -%fdupes %{buildroot}%{python_sitelib}/ %post %python_install_alternative vba_extract @@ -73,10 +72,10 @@ %python_uninstall_alternative vba_extract %files %{python_files} -%defattr(-,root,root) -%doc Changes LICENSE.txt README.rst +%doc Changes README.rst +%license LICENSE.txt %python_alternative %{_bindir}/vba_extract %{python_sitelib}/xlsxwriter/ -%{python_sitelib}/XlsxWriter-%{version}-py%{python_version}.egg-info +%{python_sitelib}/XlsxWriter-%{version}-py*.egg-info %changelog ++++++ XlsxWriter-0.9.6.tar.gz -> XlsxWriter-1.1.2.tar.gz ++++++ ++++ 6411 lines of diff (skipped)
