Prep for release 1.0.3.

This commit is contained in:
John McNamara 2021-04-20 21:13:54 +01:00
parent f8919af346
commit 3577fdd9fb
3 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,12 @@
/** /**
@page changes Changes @page changes Changes
## 1.0.3 April 20 2021
- Added some fixes to make the library compile more cleanly as an R library.
## 1.0.2 April 15 2021 ## 1.0.2 April 15 2021
- Added option to set row heights and column widths in pixels via the - Added option to set row heights and column widths in pixels via the

View File

@ -18,7 +18,7 @@
#include "xlsxwriter/format.h" #include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h" #include "xlsxwriter/utility.h"
#define LXW_VERSION "1.0.2" #define LXW_VERSION "1.0.3"
#define LXW_VERSION_ID 102 #define LXW_VERSION_ID 103
#endif /* __LXW_XLSXWRITER_H__ */ #endif /* __LXW_XLSXWRITER_H__ */

View File

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