Prep for release 0.9.1.

This commit is contained in:
John McNamara 2019-12-27 11:40:12 +00:00
parent 18b4d265cb
commit fdf542de80
3 changed files with 13 additions and 4 deletions

View File

@ -1,6 +1,15 @@
/**
@page changes Changes
## 0.9.0 December 26 2019
- Fix to missing MD5 linkage in Cocoapod file.
Issue [#259][gh_259].
[gh_259]: https://github.com/jmcnamara/libxlsxwriter/issues/259
## 0.9.0 December 26 2019
- Fix to avoid duplicate images being copied to an libxlsxwriter file. Excel

View File

@ -18,7 +18,7 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"
#define LXW_VERSION "0.9.0"
#define LXW_VERSION_ID 90
#define LXW_VERSION "0.9.1"
#define LXW_VERSION_ID 91
#endif /* __LXW_XLSXWRITER_H__ */

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "libxlsxwriter"
s.version = "0.9.0"
s.version = "0.9.1"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.8"
@ -36,7 +36,7 @@ Pod::Spec.new do |s|
s.author = { "John McNamara" => "jmcnamara@cpan.org" }
s.source = { :git => "https://github.com/jmcnamara/libxlsxwriter.git", :tag => "RELEASE_" + s.version.to_s }
s.source_files = "src/**/*.c", "third_party/**/{zip.c,ioapi.c,tmpfileplus.c}", "include/**/*.h"
s.source_files = "src/**/*.c", "third_party/**/{zip.c,ioapi.c,tmpfileplus.c,md5.c}", "include/**/*.h"
s.header_dir = "xlsxwriter"
s.header_mappings_dir = "include"