Prep for release 1.1.2.

This commit is contained in:
John McNamara 2021-08-08 21:09:40 +01:00
parent f5bdcb3601
commit 8d4dbfe734
4 changed files with 20 additions and 6 deletions

View File

@ -1,6 +1,20 @@
/**
@page changes Changes
## 1.1.2 August 8 2021
- Added support for autofilter rules. See @ref working_with_autofilters and
@ref autofilter.c.
Feature request [#254][gh_254].
[gh_254]: https://github.com/jmcnamara/libxlsxwriter/issues/254
- Added Description/Alt Text and Decorative accessibility options for
charts. These options were already available for images.
## 1.1.1 July 12 2021
- Added optional third party library to handle sprintf handling of
@ -25,7 +39,7 @@
Issue [#342][gh_342].
[gh_342]: https://github.com/jmcnamara/libxlsxwriter/issues/342
## 1.0.9 July 7 2021
- Added support for Excel 365 dynamic arrays. See

View File

@ -18,8 +18,8 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"
#define LXW_VERSION "1.1.1"
#define LXW_VERSION_ID 111
#define LXW_SOVERSION "2.1"
#define LXW_VERSION "1.1.2"
#define LXW_VERSION_ID 112
#define LXW_SOVERSION "3"
#endif /* __LXW_XLSXWRITER_H__ */

View File

@ -3730,7 +3730,7 @@ lxw_error worksheet_filter_column2(lxw_worksheet *worksheet, lxw_col_t col,
* @param col The column in the autofilter that the rules applies to.
* @param list Array of strings to filter on.
*
* @return
* @return A #lxw_error code.
*
* The `worksheet_filter_column_list()` function can be used specify multiple
* string matching criteria. This is a newer type of filter introduced in

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "libxlsxwriter"
s.version = "1.1.1"
s.version = "1.1.2"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.8"