Prep for release 0.3.5.

This commit is contained in:
John McNamara 2016-05-31 08:26:13 +01:00
parent d5922b0257
commit 779ae34d64
3 changed files with 14 additions and 2 deletions

View File

@ -2,6 +2,18 @@
@page changes Changes
## 0.3.5 May 31 2016
- Refactored the error handling and reporting for when the file creation
subsystem fails due to file permissions or other issues. The new error codes
are in `#lxw_error` and the codes can be converted to strings, for reporting,
using the new `lxw_strerror()` function.
Issue [#49][gh_49].
[gh_49]: https://github.com/jmcnamara/libxlsxwriter/issues/49
## 0.3.4 May 28 2016
- Updated the @ref getting_started docs with instructions on how to build

View File

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

View File

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