Prep for release 0.4.1.

This commit is contained in:
John McNamara 2016-07-11 23:51:02 +01:00
parent e818021bbf
commit 1c7faa567b
3 changed files with 15 additions and 2 deletions

View File

@ -2,6 +2,19 @@
@page changes Changes
# 0.4.1 July 11 2016
- Switched to using
[tmpfileplus](http://www.di-mgt.com.au/c_function_to_create_temp_file.html)
for temporary file handles to work around issue when the temp directory on
Windows isn't writeable. The temp file directory is now also configurable at
runtime, see @ref gsg_tmpdir.
Issue [#63][gh_63].
[gh_63]: https://github.com/jmcnamara/libxlsxwriter/issues/63
# 0.4.0 July 5 2016
- Added fixes for MSVC 2010.

View File

@ -18,6 +18,6 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"
#define LXW_VERSION "0.4.0"
#define LXW_VERSION "0.4.1"
#endif /* __LXW_XLSXWRITER_H__ */

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "libxlsxwriter"
s.version = "0.4.0"
s.version = "0.4.1"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "6.0"
s.osx.deployment_target = "10.8"