mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Prep for release 1.1.4.
This commit is contained in:
parent
7f54faaddb
commit
a699c57ba0
11
Changes.txt
11
Changes.txt
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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__ */
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user