diff --git a/Changes.txt b/Changes.txt index d703faef..92079409 100644 --- a/Changes.txt +++ b/Changes.txt @@ -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 diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index fdc337d8..72f79748 100644 --- a/include/xlsxwriter.h +++ b/include/xlsxwriter.h @@ -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__ */ diff --git a/include/xlsxwriter/worksheet.h b/include/xlsxwriter/worksheet.h index 1f512b0f..3b034589 100644 --- a/include/xlsxwriter/worksheet.h +++ b/include/xlsxwriter/worksheet.h @@ -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 diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index 6f6bc9b3..c943ed26 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -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"