Prep for release 1.1.7.

This commit is contained in:
John McNamara 2024-04-06 00:08:20 +01:00
parent 873c1e8e18
commit 7548faa95a
3 changed files with 15 additions and 7 deletions

View File

@ -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.
</p>
- 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

View File

@ -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__ */

View File

@ -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"