Prep for release 1.1.1.

This commit is contained in:
John McNamara 2021-07-12 23:30:20 +01:00
parent bda599d033
commit 5bb72e58a8
4 changed files with 21 additions and 3 deletions

View File

@ -1,6 +1,23 @@
/**
@page changes Changes
## 1.1.1 July 12 2021
- Added optional third party library to handle sprintf handling of
doubles. This is to avoid issues with number formatting in some locales. The
optional library is the Milo Yip DTOA implementation. See @ref gsg_dtoa.
Issue [#272][gh_272].
[gh_272]: https://github.com/jmcnamara/libxlsxwriter/issues/272
- Added the #LXW_EXPLICIT_FALSE variable to allow the default bold property in
chart title fonts to be turned off.
Issue [#199][gh_199].
[gh_199]: https://github.com/jmcnamara/libxlsxwriter/issues/199
## 1.1.0 July 9 2021
- Fix for Cocoapod issue where local md5 files conflicted with BoringSSL headers.

View File

@ -18,6 +18,7 @@
#import "shared_strings.h"
#import "styles.h"
#import "theme.h"
#import "third_party/emyg_dtoa.h"
#import "third_party/ioapi.h"
#import "third_party/md5.h"
#import "third_party/queue.h"

View File

@ -18,8 +18,8 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"
#define LXW_VERSION "1.1.0"
#define LXW_VERSION_ID 110
#define LXW_VERSION "1.1.1"
#define LXW_VERSION_ID 111
#define LXW_SOVERSION "2.1"
#endif /* __LXW_XLSXWRITER_H__ */

View File

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