Prep for release 1.1.9.

This commit is contained in:
John McNamara 2024-10-24 23:47:44 +01:00
parent 6ccd70c372
commit 7ba204a82c
3 changed files with 10 additions and 3 deletions

View file

@ -1,6 +1,13 @@
/** /**
@page changes Changes @page changes Changes
## 1.1.9 October 24 2024
- Fix minor pointer/value error in `lxw_name_to_row()` and `lxw_name_to_col()`
utility functions.
[gh_459]: https://github.com/jmcnamara/libxlsxwriter/issues/459
## 1.1.8 July 31 2024 ## 1.1.8 July 31 2024

View file

@ -19,8 +19,8 @@
#include "xlsxwriter/format.h" #include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h" #include "xlsxwriter/utility.h"
#define LXW_VERSION "1.1.8" #define LXW_VERSION "1.1.9"
#define LXW_VERSION_ID 118 #define LXW_VERSION_ID 119
#define LXW_SOVERSION "7" #define LXW_SOVERSION "7"
#endif /* __LXW_XLSXWRITER_H__ */ #endif /* __LXW_XLSXWRITER_H__ */

View file

@ -1,6 +1,6 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = "libxlsxwriter" s.name = "libxlsxwriter"
s.version = "1.1.8" s.version = "1.1.9"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "12.0" s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13" s.osx.deployment_target = "10.13"