Prep for release 0.3.7.

This commit is contained in:
John McNamara 2016-06-03 01:01:57 +01:00
parent 6ba940f58d
commit af0063a75f
5 changed files with 13 additions and 8 deletions

View File

@ -1,6 +1,16 @@
/**
@page changes Changes
# 0.3.7 June 2 2016
- Added updated Cocoapods file for Cocoapods 1.0.0. This also add support for
the "use_frameworks" directive. Thanks to Ludovico Rossi. See @ref
getting_started for instructions on how to use the cocoapod.
Pull request [#50][gh_50].
[gh_50]: https://github.com/jmcnamara/libxlsxwriter/issues/50
## 0.3.6 June 1 2016

View File

@ -169,11 +169,6 @@ X with Objective-C and Swift see [libxlsxwriter Cocoa
Examples](https://github.com/lrossi/libxlsxwriterCocoaExamples), provided by
Ludovico Rossi.
Note: if you are using the `"use_frameworks!"` directive in your Podfile then
see the following
[discussion](https://github.com/jmcnamara/libxlsxwriter/pull/13) for a
workaround.
## Installation on Windows using Microsoft Visual Studio

View File

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

View File

@ -101,7 +101,7 @@ enum lxw_error {
/* Max col string length. */
#define LXW_MAX_COL_NAME_LENGTH sizeof("$XFD")
/* Max cell string lenght. */
/* Max cell string length. */
#define LXW_MAX_CELL_NAME_LENGTH sizeof("$XFWD$1048576")
/* Max range: $XFWD$1048576:$XFWD$1048576\0 */

View File

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