From 2f06734178094e9a8c9fc239ee923b2809bae1e5 Mon Sep 17 00:00:00 2001 From: John McNamara Date: Tue, 27 Jun 2017 00:55:35 +0100 Subject: [PATCH] Prep for release 0.7.0. --- Changes.txt | 11 +++++++++++ include/xlsxwriter.h | 2 +- libxlsxwriter.podspec | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Changes.txt b/Changes.txt index beb93400..0398eedd 100644 --- a/Changes.txt +++ b/Changes.txt @@ -2,6 +2,17 @@ @page changes Changes +## 0.7.0 June 26 2017 + +- Added support for CMake build system. See @ref gsg_cmake. + Thanks to Alex Huszagh. + +- Fixed issue where image filehandles weren't closed until the overall file + was closed causing the system to run out of filehandles. + Issue [#106][gh_106]. + + [gh_106]: https://github.com/jmcnamara/libxlsxwriter/issues/106 + ## 0.6.9 January 30 2017 - Added chart trendlines. See @ref chart_trendlines and diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index a5956cbc..1e6929d7 100644 --- a/include/xlsxwriter.h +++ b/include/xlsxwriter.h @@ -18,6 +18,6 @@ #include "xlsxwriter/format.h" #include "xlsxwriter/utility.h" -#define LXW_VERSION "0.6.9" +#define LXW_VERSION "0.7.0" #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index 34f7a184..4bcb35ab 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "libxlsxwriter" - s.version = "0.6.9" + s.version = "0.7.0" s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.ios.deployment_target = "6.0" s.osx.deployment_target = "10.8"