Prep for release 1.1.4.

This commit is contained in:
John McNamara 2021-10-09 14:44:36 +01:00
parent 7f54faaddb
commit a699c57ba0
4 changed files with 16 additions and 4 deletions

View File

@ -1,6 +1,17 @@
/**
@page changes Changes
## 1.1.4 October 9 2021
- Added support for Worksheet tables. Tables in Excel are a way of grouping a
range of cells into a single entity that has common formatting or that can
be referenced from formulas. Tables can have column headers, autofilters,
total rows, column formulas and default formatting. See @ref
working_with_tables and @ref tables.c.
- Added support for adding a macro button to a worksheet. See @ref macro.c.
## 1.1.3 August 9 2021
- Changed worksheet_filter_column2() parameter name "operator" to "and_or" to

View File

@ -17,6 +17,7 @@
#import "relationships.h"
#import "shared_strings.h"
#import "styles.h"
#import "table.h"
#import "theme.h"
#import "third_party/emyg_dtoa.h"
#import "third_party/ioapi.h"

View File

@ -18,8 +18,8 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"
#define LXW_VERSION "1.1.3"
#define LXW_VERSION_ID 113
#define LXW_SOVERSION "3"
#define LXW_VERSION "1.1.4"
#define LXW_VERSION_ID 114
#define LXW_SOVERSION "4"
#endif /* __LXW_XLSXWRITER_H__ */

View File

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