From 9a20ee2fcc790d9ed82f12fc3e9e9a2f4c8bc60e Mon Sep 17 00:00:00 2001 From: John McNamara Date: Mon, 1 Oct 2018 22:54:02 +0100 Subject: [PATCH] Prep for release 0.8.3. --- Changes.txt | 9 +++++++++ include/xlsxwriter.h | 2 +- libxlsxwriter.podspec | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Changes.txt b/Changes.txt index ac1d74eb..4d74364e 100644 --- a/Changes.txt +++ b/Changes.txt @@ -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 diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index 3c133e55..598b6578 100644 --- a/include/xlsxwriter.h +++ b/include/xlsxwriter.h @@ -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__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index d3bf221b..91eb8c25 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -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"