Prep for release 0.7.0.

This commit is contained in:
John McNamara 2017-06-27 00:55:35 +01:00
parent 3fdf181d1e
commit 2f06734178
3 changed files with 13 additions and 2 deletions

View file

@ -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

View file

@ -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__ */

View file

@ -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"