From bbfea4c9013b508b90dece382c76e9cd7315af66 Mon Sep 17 00:00:00 2001 From: John McNamara Date: Mon, 13 Jan 2020 22:56:00 +0000 Subject: [PATCH] Prep for release 0.9.2. --- Changes.txt | 7 ++++++- cocoapods/libxlsxwriter-umbrella.h | 2 ++ include/xlsxwriter.h | 4 ++-- libxlsxwriter.podspec | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Changes.txt b/Changes.txt index 3984e2e6..4ee48f3d 100644 --- a/Changes.txt +++ b/Changes.txt @@ -2,7 +2,12 @@ @page changes Changes -## 0.9.0 December 26 2019 +## 0.9.2 January 13 2019 + +- Added support for writing cell comments, see @ref working_with_comments. + + +## 0.9.1 December 26 2019 - Fix to missing MD5 linkage in Cocoapod file. Issue [#259][gh_259]. diff --git a/cocoapods/libxlsxwriter-umbrella.h b/cocoapods/libxlsxwriter-umbrella.h index 263bb5f8..c22f9e63 100644 --- a/cocoapods/libxlsxwriter-umbrella.h +++ b/cocoapods/libxlsxwriter-umbrella.h @@ -4,6 +4,7 @@ #import "app.h" #import "chart.h" #import "chartsheet.h" +#import "comment.h" #import "common.h" #import "content_types.h" #import "core.h" @@ -23,6 +24,7 @@ #import "third_party/tree.h" #import "third_party/zip.h" #import "utility.h" +#import "vml.h" #import "workbook.h" #import "worksheet.h" #import "xmlwriter.h" diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index 658fb1e2..d0d2089e 100644 --- a/include/xlsxwriter.h +++ b/include/xlsxwriter.h @@ -18,7 +18,7 @@ #include "xlsxwriter/format.h" #include "xlsxwriter/utility.h" -#define LXW_VERSION "0.9.1" -#define LXW_VERSION_ID 91 +#define LXW_VERSION "0.9.2" +#define LXW_VERSION_ID 92 #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index f6cdec45..8726687f 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "libxlsxwriter" - s.version = "0.9.1" + s.version = "0.9.2" s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.ios.deployment_target = "8.0" s.osx.deployment_target = "10.8"