diff --git a/Changes.txt b/Changes.txt index f2b40e2e..45b00133 100644 --- a/Changes.txt +++ b/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 diff --git a/cocoapods/libxlsxwriter-umbrella.h b/cocoapods/libxlsxwriter-umbrella.h index e8b15ce3..73f71687 100644 --- a/cocoapods/libxlsxwriter-umbrella.h +++ b/cocoapods/libxlsxwriter-umbrella.h @@ -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" diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index 2e972f73..edc9f0a9 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.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__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index 2b27c5f7..898d3932 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -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"