Skip to content

Commit

Permalink
Prep for release 1.1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Aug 8, 2021
1 parent f5bdcb3 commit 8d4dbfe
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
16 changes: 15 additions & 1 deletion Changes.txt
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions include/xlsxwriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__ */
2 changes: 1 addition & 1 deletion include/xlsxwriter/worksheet.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion libxlsxwriter.podspec
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 8d4dbfe

Please sign in to comment.