Skip to content

Commit

Permalink
Prep for release 0.9.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Dec 27, 2019
1 parent 18b4d26 commit fdf542d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions include/xlsxwriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__ */
4 changes: 2 additions & 2 deletions 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 = "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"
Expand Down Expand Up @@ -36,7 +36,7 @@ Pod::Spec.new do |s|
s.author = { "John McNamara" => "[email protected]" }

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"
Expand Down

0 comments on commit fdf542d

Please sign in to comment.