From 7548faa95afdf8ac321136d10eda931683fbf7c6 Mon Sep 17 00:00:00 2001 From: John McNamara Date: Sat, 6 Apr 2024 00:08:20 +0100 Subject: [PATCH] Prep for release 1.1.7. --- Changes.txt | 14 +++++++++++--- include/xlsxwriter.h | 6 +++--- libxlsxwriter.podspec | 2 +- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/Changes.txt b/Changes.txt index 72bb7478..8f30935d 100644 --- a/Changes.txt +++ b/Changes.txt @@ -1,6 +1,11 @@ /** @page changes Changes +## 1.1.7 April 5 2024 + +- Bump `.so` version to 6. This was missed in the previous release. + + ## 1.1.6 April 4 2024 - Updated vendored version of minizip to v 1.3.0 to include upstream fixes. @@ -30,14 +35,17 @@ [gh_405]: https://github.com/jmcnamara/libxlsxwriter/issues/405 - Fix for buffer overflow with utf-8 strings in data validation. -

- -- Fix for range in text type conditional format. Feature request [#394][gh_394]. [gh_394]: https://github.com/jmcnamara/libxlsxwriter/issues/394 +- Fix for range in text type conditional format. + + Feature request [#395][gh_395]. + + [gh_395]: https://github.com/jmcnamara/libxlsxwriter/issues/395 + - Fix 32bit multiply with overflow issue for images. Fix multiply with overflow issue when image locations in the worksheet diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index 935cd277..45c194a8 100644 --- a/include/xlsxwriter.h +++ b/include/xlsxwriter.h @@ -19,8 +19,8 @@ #include "xlsxwriter/format.h" #include "xlsxwriter/utility.h" -#define LXW_VERSION "1.1.6" -#define LXW_VERSION_ID 116 -#define LXW_SOVERSION "5" +#define LXW_VERSION "1.1.7" +#define LXW_VERSION_ID 117 +#define LXW_SOVERSION "6" #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index d85c5675..6e0f8f7d 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "libxlsxwriter" - s.version = "1.1.6" + s.version = "1.1.7" s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.ios.deployment_target = "12.0" s.osx.deployment_target = "10.13"