Skip to content

Commit

Permalink
Prep for release 1.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Jul 12, 2021
1 parent bda599d commit 5bb72e5
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
17 changes: 17 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 1 addition & 0 deletions cocoapods/libxlsxwriter-umbrella.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions include/xlsxwriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__ */
2 changes: 1 addition & 1 deletion libxlsxwriter.podspec
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 5bb72e5

Please sign in to comment.