From fdf542de800988e7f1b24cc136e576997a6dfaac Mon Sep 17 00:00:00 2001 From: John McNamara Date: Fri, 27 Dec 2019 11:40:12 +0000 Subject: [PATCH] Prep for release 0.9.1. --- Changes.txt | 9 +++++++++ include/xlsxwriter.h | 4 ++-- libxlsxwriter.podspec | 4 ++-- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Changes.txt b/Changes.txt index 1eb33442..3984e2e6 100644 --- a/Changes.txt +++ b/Changes.txt @@ -1,6 +1,15 @@ /** @page changes Changes + +## 0.9.0 December 26 2019 + +- Fix to missing MD5 linkage in Cocoapod file. + Issue [#259][gh_259]. + + [gh_259]: https://github.com/jmcnamara/libxlsxwriter/issues/259 + + ## 0.9.0 December 26 2019 - Fix to avoid duplicate images being copied to an libxlsxwriter file. Excel diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index 8a90a37b..b0053f26 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.0" -#define LXW_VERSION_ID 90 +#define LXW_VERSION "0.9.1" +#define LXW_VERSION_ID 91 #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index d65ff757..339c122c 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "libxlsxwriter" - s.version = "0.9.0" + s.version = "0.9.1" s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.ios.deployment_target = "8.0" s.osx.deployment_target = "10.8" @@ -36,7 +36,7 @@ Pod::Spec.new do |s| s.author = { "John McNamara" => "jmcnamara@cpan.org" } s.source = { :git => "https://github.com/jmcnamara/libxlsxwriter.git", :tag => "RELEASE_" + s.version.to_s } - s.source_files = "src/**/*.c", "third_party/**/{zip.c,ioapi.c,tmpfileplus.c}", "include/**/*.h" + s.source_files = "src/**/*.c", "third_party/**/{zip.c,ioapi.c,tmpfileplus.c,md5.c}", "include/**/*.h" s.header_dir = "xlsxwriter" s.header_mappings_dir = "include"