Prep for release 0.8.3.

This commit is contained in:
John McNamara 2018-10-01 22:54:02 +01:00
parent 8df3ce882c
commit 9a20ee2fcc
3 changed files with 11 additions and 2 deletions

View File

@ -2,6 +2,15 @@
@page changes Changes
## 0.8.3 October 1 2018
- Added `worksheet_write_rich_string()` function to allow writing of
multi-format rich strings. See @ref rich_strings.c
Feature request [#37][gh_37].
[gh_37]: https://github.com/jmcnamara/libxlsxwriter/issues/37
## 0.8.2 September 16 2018
- Added new chartsheet functionality: `chartsheet_set_tab_color()`, and

View File

@ -18,6 +18,6 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"
#define LXW_VERSION "0.8.2"
#define LXW_VERSION "0.8.3"
#endif /* __LXW_XLSXWRITER_H__ */

View File

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