Prep for release 0.9.9.

This commit is contained in:
John McNamara 2020-08-17 23:32:14 +01:00
parent 3b1563d0e1
commit 5269d07825
3 changed files with 11 additions and 3 deletions

View File

@ -2,6 +2,14 @@
@page changes Changes
## 0.9.9 August 17 2020
- Added support for images in headers and footers. See `worksheet_set_header_opt()`.
- Added `worksheet_ignore_errors()` function to ignore Excel worksheet
errors/warnings in user defined ranges.
## 0.9.8 August 11 2020
- Added formatting for chart data labels and chart custom data labels. See

View File

@ -18,7 +18,7 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"
#define LXW_VERSION "0.9.8"
#define LXW_VERSION_ID 98
#define LXW_VERSION "0.9.9"
#define LXW_VERSION_ID 99
#endif /* __LXW_XLSXWRITER_H__ */

View File

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