From 016e6eb1db73fcc1df718d3b7a8e1b2748c69f55 Mon Sep 17 00:00:00 2001 From: John McNamara Date: Fri, 9 Jul 2021 20:33:38 +0100 Subject: [PATCH] Prep for release 1.1.0. --- Changes.txt | 8 ++++++++ include/xlsxwriter.h | 4 ++-- libxlsxwriter.podspec | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Changes.txt b/Changes.txt index c78c0519..65221ebf 100644 --- a/Changes.txt +++ b/Changes.txt @@ -1,6 +1,14 @@ /** @page changes Changes +## 1.1.0 July 9 2021 + +- Fix for Cocoapod issue where local md5 files conflicted with BoringSSL headers. + + Issue [#342][gh_342]. + + [gh_342]: https://github.com/jmcnamara/libxlsxwriter/issues/342 + ## 1.0.9 July 7 2021 - Added support for Excel 365 dynamic arrays. See diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index cd1330f5..e5d3e54e 100644 --- a/include/xlsxwriter.h +++ b/include/xlsxwriter.h @@ -18,8 +18,8 @@ #include "xlsxwriter/format.h" #include "xlsxwriter/utility.h" -#define LXW_VERSION "1.0.9" -#define LXW_VERSION_ID 109 +#define LXW_VERSION "1.1.0" +#define LXW_VERSION_ID 110 #define LXW_SOVERSION "2.1" #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index a0f58a3d..0a10150b 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "libxlsxwriter" - s.version = "1.0.9" + s.version = "1.1.0" s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.ios.deployment_target = "8.0" s.osx.deployment_target = "10.8"