Skip to content

Commit

Permalink
Prep for release 1.1.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Oct 9, 2021
1 parent 7f54faa commit a699c57
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
11 changes: 11 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions cocoapods/libxlsxwriter-umbrella.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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.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__ */
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.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"
Expand Down

0 comments on commit a699c57

Please sign in to comment.